@import url("master.css");
@import url("../font/iconfont.css");
@import url("roll.css");
@import url("animate.css");
@import url("jquery.fancybox.css");

:root {
  --color01: rgba(62, 151, 219, 1);
  --color02: rgba(43, 109, 183, 1);
  --color03: rgba(234, 54, 40, 1);
  --box-shadow01: 0px 0px 20px rgba(63, 116, 254, .1);
  --bcr1: cubic-bezier(0.4, 0.4, 0, 1);
  --bcr2: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.move_top {
  padding-top: 0.9rem;
}

.mobile_img {
  display: none;
}

/*main*/
#main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#main .scrollbar-track-y {
  background-color: #e5e5e5;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 8px;
}

#main .scrollbar-track-y .scrollbar-thumb-y {
  background-color: var(--color01);
  width: 100%;
}

#main .liTxt {
  padding-right: 15px;
  margin-right: -15px;
}

#main .liTxt .scrollbar-track-y {
  width: 3px;
  border-radius: 3px;
}

#main .liTxt .scrollbar-track-y .scrollbar-thumb-y {
  border-radius: 3px;
}

/*font_effect*/
.font_effect>span {
  display: inline-table;
  overflow: hidden;
}

.font_effect>span>font {
  display: block;
  -webkit-animation-duration: 0.6s !important;
  animation-duration: 0.6s !important;
}

/*相册、视频（打开动画）*/
#spotlight {
  background-color: rgba(0, 0, 0, 0.6);
  clip-path: circle(0px at center);
  -webkit-clip-path: circle(0px at center);
}

#spotlight.show {
  clip-path: circle(100% at center);
  -webkit-clip-path: circle(100% at center);
  transition: clip-path ease 1s;
  -webkit-transition: clip-path ease 1s;
}

/*字体间距*/
.zh {
  letter-spacing: 0.075em;
}

/*分页器*/
.pagination {
  text-align: center;
}

.pagination li {
  display: inline-block;
  padding: 0 0.1rem;
}

.pagination li a,
.pagination li span {
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  line-height: 0.6rem;
  border: 1px solid var(--color01);
  border-radius: 50%;
  background-color: #fff;
  color: var(--color01);
  transition: all 0.35s ease;
}

.pagination li.active span {
  background-color: var(--color01);
  color: #fff;
  pointer-events: none;
}

.pagination li.disabled span {
  cursor: not-allowed;
}

/*href_hover*/
/*线型*/
.hoverable .hoverable_txt {
  position: relative;
  display: inline-block;
}

.hoverable .hoverable_txt:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}


/*Menu*/
.openMenu {
  display: none;
}

.openMenu>a {
  align-items: center;
  outline: none;
}

.openMenu .openMenu_btn {
  width: 24px;
  height: 24px;
}

.openMenu .openMenu_btn span {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  transition: all 0.4s ease;
  background-color: var(--color01);
}

.openMenu .openMenu_btn span:nth-child(1) {
  top: 3px;
  left: 0;
}

.openMenu .openMenu_btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 16px;
  right: 0;
}

.openMenu .openMenu_btn span:nth-child(3) {
  bottom: 3px;
  left: 0;
}

.header.mobileNav .openMenu .openMenu_btn span:nth-child(1) {
  top: 11px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.header.mobileNav .openMenu .openMenu_btn span:nth-child(2) {
  opacity: 0;
  -webkit-opacity: 0;
  visibility: hidden;
}

.header.mobileNav .openMenu .openMenu_btn span:nth-child(3) {
  bottom: 11px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

/*页头*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
}

.header::before {
  content: "";
  width: 100vw;
  height: .9rem;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 1);
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.pc-nav {
  height: .9rem;
}

.pc-nav ._logo>a {
  padding: 0 0.4rem 0 0.6rem;
  align-items: center;
  height: 100%;
  background-color: rgba(245, 245, 245, 1);
}

.pc-nav ._logo>a::after {
  content: "";
  width: 0;
  height: 100%;
  border-top: .45rem solid #fff;
  border-bottom: .45rem solid #fff;
  border-left: .3rem solid transparent;
  position: absolute;
  right: 0;
  top: 0;
}

.pc-nav ._logo>a>div {
  height: 0.7rem;
}

.pc-nav ._logo>a>div img {
  height: 100%;
}

.pc-nav .nav {
  margin-right: auto;
}

.pc-nav .nav .nav_a {
  position: relative;
}


.pc-nav .nav .nav_a>a {
  font-size: .18rem;
  color: rgba(51, 51, 51, 1);
  height: .9rem;
  line-height: .9rem;
  padding: 0 0.3rem;
  transition: all 0.3s ease;
  position: relative;
}

/* .pc-nav .nav .nav_a:last-of-type>a:after {
  display: none;
} */

/* .pc-nav .nav .nav_a>a .hoverable_txt:after {
  background-color: var(--color01);
  height: 2px;
  border-radius: 2px;
} */

.pc-nav .nav .nav_a>a:hover,.pc-nav .nav .nav_a.active>a {
  color: rgba(0, 0, 0, 1);
  font-weight: bold;
}

.pc-nav .nav .nav_a>a:hover:after {
  opacity: 1;
  transform: none;
}

.pc-nav .nav .nav_a>.nav_b {
  position: absolute;
  top: 100%;
  left: 50%;
  padding: 5px 0;
  color: #666;
  min-width: 130px;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  transform: translateX(-50%) translateY(10px);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  z-index: 5;
  transition: all 0.3s ease-in-out;
}

.pc-nav .nav .nav_a>.nav_b:before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 0;
  height: 0px;
  margin-left: -6px;
  border-style: solid;
  border-width: 6px;
  border-color: #fff #fff transparent transparent;
  transform: rotate(-45deg);
  box-shadow: 2px -2px 2px rgba(100, 100, 100, 0.1);
}

.pc-nav .nav .nav_a>.nav_b>.nav_b_list>li>a {
  white-space: nowrap;
  line-height: 38px;
  color: #666;
  transition: all 0.3s ease;
  padding: 0 .15rem;
}

.pc-nav .operation {
  color: var(--color01);
  align-items: center;
}

.pc-nav .operation ._item {
  padding: 0 .2rem;
  align-items: center;
  flex-flow: row;
  gap: 8px;
  color: rgba(0, 0, 0, 1);
  border-left: 1px solid rgba(243, 243, 243, 1);
  cursor: pointer;
  transition: background-color .3s ease;
  height: 100%;
  position: relative;
}

.pc-nav .operation ._item .icon {
  font-size: .22rem;
  line-height: 1;
  color: rgba(0, 0, 0, 1);
}

.pc-nav .operation ._item span {
  font-size: .16rem;
}

.pc-nav .search {
  padding: 0 .15rem;
  align-items: center;
  border: 1px solid rgba(181, 181, 181, 1);
  border-radius: 6px;
  transition: all .3s ease-in-out;
  background-color: #fff;
}

.pc-nav .search ._dd {
  padding: 0 0 0 .1rem;
}

.pc-nav .search ._dd>input {
  border: none;
  background: none;
  height: .44rem;
  width: 1.36rem;
  font-size: .14rem;
  color: #333;
}

.pc-nav .search ._dd>input::-webkit-input-placeholder {
  color: #d1d1d1;
}

.pc-nav .search ._dd>input:-moz-placeholder {
  color: #d1d1d1;
}

.pc-nav .search ._dd>input::-moz-placeholder {
  color: #d1d1d1;
}

.pc-nav .search ._dd>input:-ms-input-placeholder {
  color: #d1d1d1;
}

.pc-nav .search ._dt {
  display: none;
}

.pc-nav .search ._dt>button {
  border: none;
  background: none;
  width: .44rem;
  height: .44rem;
  transition: color .3s ease;
}

/* 多语言 */
.header__lang {
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: var(--color02);
  padding: 0 .3rem;
  cursor: pointer;
  transition: background-color .3s ease;
  height: 100%;
  position: relative;
}

.header__lang i {
  font-size: 22px;
}

.pc-nav .language {
  position: absolute;
  top: 100%;
  width: 0.65rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.pc-nav .language .language_item {
  background-color: #fff;
}

.pc-nav .language .language_item a {
  line-height: 0.34rem;
  color: #333;
  transition: all 0.3s ease;
}

.pc-nav .language .language_item:first-child a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #eee;
}

.pc-nav .language:after {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 0;
  height: 0px;
  margin-left: -4px;
  border-style: solid;
  border-width: 4px;
  border-color: #fff #fff transparent transparent;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 2px -2px 2px rgba(153, 153, 153, 0.1);
  -webkit-box-shadow: 2px -2px 2px rgba(153, 153, 153, 0.1);
}

.pc-nav .header__lang:hover .language {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

/* header mail */
.header__mail {
  position: relative;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: -1;
  background-color: #fff;
  overflow: hidden;
  opacity: 0;
  height: 0;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.menu ._box {
  height: 7.28rem;
  width: 100%;
}

.menu ._list {
  height: 100%;
}

.menu ._list>div {
  display: none;
}

.menu ._list>div>div {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  line-height: 1.25;
  /* justify-content: space-between; */
}

.menu ._list ._item {
  position: relative;
  /* padding: 0 .5rem;
  width: calc(100% / 5); */
}

.menu ._list ._item+._item::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(229, 229, 229, 1);
  position: absolute;
  left: -.5rem;
  top: 0;
  z-index: 0;
}

.menu ._list ._item ._img {
  margin-bottom: .1rem;
  border-radius: 10px;
  height: 1.36rem;
  overflow: hidden;
}

.menu ._list ._item ._img img {
  border-radius: 10px;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu ._list ._item ._a {
  margin-bottom: 0.2rem;
  position: relative;
}

.menu ._list ._item ._a::after {
  content: "";
  width: .28rem;
  height: .28rem;
  background: url(../images/icon-logo.png) no-repeat center;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.menu ._list ._item ._a>a {
  font-size: .18rem;
  color: rgba(153, 153, 153, 1);
  font-weight: bold;
  display: inline-block;
}

.menu ._list ._item ._b li {
  justify-content: space-between;
  align-items: center;
}

.menu ._list ._item ._b li i {
  font-size: .16rem;
  color: rgba(153, 153, 153, 1);
  transform: rotate(-45deg);
}

.menu ._list ._item ._b li a {
  font-size: .16rem;
  color: rgba(51, 51, 51, 1);
  display: inline-block;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.menu ._list ._item ._b li a .hoverable_txt {
  padding: 3px 0;
}

.menu ._list ._item ._b li a .hoverable_txt:after {
  background-color: var(--color01);
}
.menu ._list ._item:hover ._a::after{
  filter: grayscale(0%);
}

.header.onWhite .menu {
  height: 0.9rem;
  opacity: 1;
}

.header.onShow .menu {
  height: 7.28rem;
  opacity: 1;
}

.header.onWhite::before {
  height: .9rem;
  background-color: #fff;
}

.header__menu {
  align-items: center;
}

/* 移动折叠菜单 */
/*mobile nav*/
.m-nav {
  position: fixed;
  top: 1.2rem;
  width: 100%;
  height: calc(100vh - 1.2rem);
  background: #fff;
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  z-index: 0;
  opacity: 0;
  visibility: visible;
  margin-top: 0;
  overflow-y: auto;
  transform: translateX(100%);
}

.m-nav a {
  outline: none;
}

.m-nav.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1000;
}

.m-nav .ul {
  margin-top: 20px;
}

.m-nav .ul li {
  padding: 0 20px;
  border-bottom: 1px solid #f5f5f5;
  transform: translateY(0);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  opacity: 0;
}

.m-nav.active .ul li {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.m-nav .ul li:nth-child(1) {
  -webkit-transition: all 0.2s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 0.2s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}

.m-nav .ul li:nth-child(2) {
  -webkit-transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}

.m-nav .ul li:nth-child(3) {
  -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}

.m-nav .ul li:nth-child(4) {
  -webkit-transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}

.m-nav .ul li:nth-child(5) {
  -webkit-transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}

.m-nav .ul li:nth-child(6) {
  -webkit-transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}

.m-nav .ul li:nth-child(7) {
  -webkit-transition: all 1.4s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}

.m-nav .ul li:nth-child(8) {
  -webkit-transition: all 1.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}

.m-nav .ul li a {
  display: block;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  height: 50px;
  line-height: 50px;
  width: 100%;
  position: relative;
}

.m-nav .ul li a.active {
  font-weight: 800;
  color: #1b2c43;
}

.m-nav .ul li.dropdown a.dropdown-title::before,
.m-nav .ul li.dropdown a.dropdown-title::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 1px;
  background-color: rgba(51, 51, 51, 0.5);
  right: 10px;
  top: 50%;
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  -o-transition: transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

.m-nav .ul li.dropdown a.dropdown-title::after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.m-nav .ul li.dropdown a.dropdown-title.active::after {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.m-nav .ul li a i {
  font-size: 12px;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.m-nav .ul li .dropdown_menu {
  display: none;
}

.m-nav .ul li.dropdown.active .dropdown_menu {
  display: block;
}

.m-nav .ul li .dropdown_menu a {
  display: block;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  box-sizing: border-box;
  border-bottom: 1px solid #f5f5f5;
}

.m-nav .ul li .dropdown_menu a:last-child {
  border: none;
}

.m-code-box img {
  display: block;
  width: 40%;
  margin: 0 auto;
}

.m-code-box p {
  font-size: .3rem;
  line-height: 2;
}

.m-nav-tel {
  text-align: center;
  margin-top: 18px;
  margin-bottom: 20px;
  font-size: 18px;
  color: #666;
}

.m-nav-tel a {
  font-weight: 800;
}

.m-nav-link {
  text-align: center;
  margin-top: 18px;
}

.m-nav-link a {
  display: inline-block;
  padding: 5px 25px;
  color: #fff;
  cursor: default;
  background: #00598e;
  font-size: 14px;
  line-height: 2;
}

/*首页*/
.Hbanner {
  width: 100%;
  /* height: 100vh; */
  overflow: hidden;
  background-color: #000;
}

#Hbanner {
  width: 100%;
  height: 100%;
}

#Hbanner .swiper-slide {
  overflow: hidden;
}

#Hbanner .swiper-slide>a {
  width: 100%;
  height: 100%;
  display: block;
}

#Hbanner ._bg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: -1;
}

#Hbanner ._bg:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.6); */
  top: 0;
  left: 0;
  z-index: 2;
}

#Hbanner ._bg>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  transition: transform 2s;
}

#Hbanner .Hbanner_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #fff;
  pointer-events: none;
}

#Hbanner .Hbanner_txt ._item ._title {
  margin-bottom: 0.1rem;
  margin-left: -5px;
  font-size: 0.6rem;
  font-weight: bold;
  text-shadow: 0px 5px 10px rgba(6, 37, 84, 1);
  letter-spacing: 5px;
}

#Hbanner .Hbanner_txt ._item ._en {
  margin-bottom: 0.1rem;
  margin-left: -1px;
  font-size: 0.25rem;
  font-weight: lighter;
  font-family: "Cinzel";
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
}

#Hbanner .Hbanner_txt ._item ._tps {
  font-size: 0.28rem;
  font-weight: normal;
}

#Hbanner .Hbanner_txt ._item ._btn {
  margin-top: 0.3rem;
  pointer-events: auto;
  display: inline-block;
}

#Hbanner .Hbanner_txt .animated {
  animation-duration: 1s;
}

.pagination-box {
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: .5rem;
  transform: translateX(-50%);
  z-index: 2;
}

/* .pagination-box .swiper-pagination {
  width: auto;
  font-size: 0;
  position: absolute;
  left: auto;
  right: 0;
  bottom: auto;
} */
._numBtn {
  align-items: center;
}

.lb-num {
  align-items: flex-end;
  color: rgba(255, 255, 255, 1);
  font-size: 0.2rem;
  line-height: 1;
  font-family: "MiSansLatin";
  z-index: 10;
}

.lb-num .on {
  color: var(--color03);
  font-weight: bold;
  /* font-size: 0.56rem; */
}

.lb-num span {
  margin: 0 0.08rem;
  font-size: .2rem;
}

._numBtn i {
  font-size: .22rem;
  color: #fff;
  cursor: pointer;
  line-height: 1;
}

._numBtn .swiper-button-disabled i {
  cursor: not-allowed;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes first {
  0% {
    transform: scaleX(0);
    left: 0px;
  }

  /*091*/
  100% {
    transform: scaleX(1);
    left: 0px;
  }

  /*0915*/
}

@keyframes last {
  0% {
    transform: scaleX(0);
    left: 0px;
  }

  /*1090*/
  20% {
    transform: scaleX(0.5);
    left: 0px;
  }

  /*090*/
  100% {
    transform: scaleX(1);
    left: 0px;
  }

  /*090*/
}

@keyframes middle {
  0% {
    transform: scaleX(0);
    left: 0px;
  }

  /*1091*/
  20% {
    transform: scaleX(0.5);
    left: 0px;
  }

  /*092*/
  100% {
    transform: scaleX(1);
    left: 0px;
  }

  /*0913*/
}

.banner-mouse {
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  animation: linedown linear infinite 1.5s;
  -webkit-animation: linedown linear infinite 1.5s;
  -moz-animation: linedown linear infinite 1.5s;
  -ms-animation: linedown linear infinite 1.5s;
  -o-animation: linedown linear infinite 1.5s;
  cursor: pointer;
  z-index: 10;
}

.banner-mouse-line {
  margin-top: .1rem;
  width: 28px;
  height: 28px;
  font-size: .28rem;
  line-height: 1;
  color: #fff;
  overflow: hidden;
  animation: FmovefadeInDown linear infinite 1.5s;
  -webkit-animation: FmovefadeInDown linear infinite 1.5s;
  -moz-animation: FmovefadeInDown linear infinite 1.5s;
  -ms-animation: FmovefadeInDown linear infinite 1.5s;
  -o-animation: FmovefadeInDown linear infinite 1.5s;
}

.banner-mouse-line::after {
  /* position: absolute;
  left: 50%;
  top: 5px;
  width: 2px;
  height: 5px;
  background: #fff;
  content: "";
  margin-left: -1px;
  border-radius: 0; */
}

.banner-mouse span {
  font-size: .14rem;
  color: #fff;
  transform: rotate(90deg);
  text-transform: uppercase;
}

@keyframes FmovefadeInDown {
  0% {
    opacity: 1;
    transform: translate(0px, 0px);
  }

  35% {
    opacity: 0;
    transform: translate(0px, 50%);
  }

  65% {
    opacity: 0;
    transform: translate(0px, -50%);
  }

  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}

@-webkit-keyframes FmovefadeInDown {
  0% {
    opacity: 1;
    transform: translate(0px, 0px);
  }

  35% {
    opacity: 0;
    transform: translate(0px, 50%);
  }

  65% {
    opacity: 0;
    transform: translate(0px, -50%);
  }

  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}

@-moz-keyframes FmovefadeInDown {
  0% {
    opacity: 1;
    transform: translate(0px, 0px);
  }

  35% {
    opacity: 0;
    transform: translate(0px, 50%);
  }

  65% {
    opacity: 0;
    transform: translate(0px, -50%);
  }

  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}

@keyframes linedown {
  0% {
    bottom: 15px
  }

  50% {
    bottom: 0px
  }

  100% {
    bottom: 15px
  }
}

@-webkit-keyframes linedown {
  0% {
    bottom: 15px
  }

  50% {
    bottom: 0px
  }

  100% {
    bottom: 15px
  }
}

@-moz-keyframes linedown {
  0% {
    bottom: 15px
  }

  50% {
    bottom: 0px
  }

  100% {
    bottom: 15px
  }
}

.navigation-btn {
  opacity: 0;
  visibility: hidden;
}

.navigation-btn>div {
  width: .48rem;
  height: .48rem;
  align-items: center;
  justify-content: center;
  background-color: var(--color02);
  border: 1px solid var(--color02);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
}

.navigation-btn div+div {
  margin-left: .3rem;
}

.navigation-btn>div i {
  font-size: .22rem;
  line-height: 1;
}

.navigation-btn div.swiper-button-disabled {
  border-color: #fff;
  color: #fff;
  background-color: transparent;
  cursor: not-allowed;
}


/*masterBtn1*/
.masterBtn1 {
  height: 0.46rem;
  border-top-right-radius: 0.46rem;
  border-bottom-right-radius: 0.46rem;
  width: 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding-right: 0.18rem;
  line-height: 1;
}

.masterBtn1 ._lines {
  width: 0.1rem;
  /* opacity: 0.3; */
}

.masterBtn1 ._lines span {
  display: block;
  width: 100%;
  height: 0.04rem;
  margin-bottom: 6px;
}

.masterBtn1 ._lines span:last-of-type {
  margin-bottom: 0;
}

.masterBtn1.style1 {
  background-color: var(--color01);
  color: #fff;
}

.masterBtn1.style1 ._lines span {
  background-color: #fff;
}

.masterBtn1.style2 {
  background-color: #fff;
  color: var(--color01);
}

.masterBtn1.style2 ._lines span {
  background-color: var(--color01);
}

/* 公共标题 */
.indexTitle1 {
  padding-left: 36px;
  position: relative;
}

.indexTitle1 ._line {
  position: relative;
  height: 23px;
  flex-flow: column;
  transform: rotate(90deg) translateX(-20%);
  position: absolute;
  left: -23px;
  top: 50%;
}

.indexTitle1 ._line::before {
  content: "";
  width: 68px;
  height: 10px;
  background-color: var(--color02);
  transform: translateX(0) skew(-15deg);
}

.indexTitle1 ._line::after {
  content: "";
  margin-left: -3.5px;
  width: 68px;
  height: 13px;
  background-color: var(--color01);
  transform: translateX(0) skew(-15deg);
}

.indexTitle1 ._en {
  font-size: .20rem;
  font-family: '思源黑体';
  color: rgba(204, 204, 204, 1);
  text-transform: uppercase;
  line-height: 1;
  font-weight: 900;
  position: relative;
}

.indexTitle1 ._cn {
  color: rgba(0, 0, 0, 1);
  font-size: 0.34rem;
  line-height: 1.6;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.indexTitle1 ._cn span {
  color: var(--color02);
}


.indexTitle1.style2 ._cn {
  color: rgba(255, 255, 255, 1);
}


/* 关于我们 */
.Habout {
  padding: .6rem 0 .8rem;
  position: relative;
  overflow: hidden;
}

.Habout ._bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  z-index: -1;
}

.Habout ._bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.Habout ._cont {
  /* align-items: stretch; */
  position: relative;
  gap: 4.166667vw;
  justify-content: space-between;
}

.Habout .Habout_l {
  width: 51%;
}

.Habout .crumbs {
  /* height: 100%; */
}

.Habout .crumbs .item {
  height: 100%;
  position: relative;
}

.Habout .crumbs img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  position: relative;
  overflow: hidden;
}

.Habout .Habout_r {
  width: 43.75%;
  position: relative;
}

.Habout ._info {
  position: relative;
  overflow: hidden;
}

/* about info detail */
.pubInfo {
  flex-wrap: wrap;
}

.pubInfo .info_text {
  width: 100%;
  font-size: .18rem;
  line-height: 2;
  color: rgba(102, 102, 102, 1);
}

.pubInfo .info_text p {
  margin-bottom: 0.1rem;
  text-align: justify;
  text-indent: 2em;
  line-height: 2;
}

._moreBtn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 1px solid var(--color02);
  height: 52px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 10px 0 35px;
  border-radius: 40px;
  overflow: hidden;
  cursor: pointer;
}

._moreBtn span {
  font-size: .16rem;
  color: var(--color02);
  transition: 0.4s;
}

._moreBtn ._btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-left: 0.26rem;
  position: relative;
}

._moreBtn ._btn::after {
  content: '';
  background-color: var(--color02);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
  z-index: 0;
}

._moreBtn ._btn div {
  position: absolute;
  left: -100%;
  top: 0;
  z-index: 2;
  width: 100%;
  width: 200%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

._moreBtn ._btn div p {
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

._moreBtn ._btn div p i {
  margin: auto;
  color: #fff;
  font-size: 12px;
  transition: 0.4s;
}

._moreBtn ._btn div .p1 i {
  color: transparent;
}

._moreBtn:hover ._btn::after {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

._moreBtn:hover ._btn div {
  left: 0;
}

._moreBtn:hover ._btn div .p1 i {
  color: #fff;
}

._moreBtn:hover ._btn div .p2 i {
  color: transparent;
}
/* 荣誉资质 */
#honorSwiper ._honorList{
  display: flex;
  gap: 0;
}
#honorSwiper ._honorList ._img{
  padding: .2rem;
  height: auto;
}
/* 优势数字 */
.HkeyFigures {
  padding-top: .5rem;
  padding-bottom: .5rem;
  background: linear-gradient(180deg, rgba(236, 237, 240, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

._keyFigList {
  justify-content: space-between;
}

._keyFigList .item {
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
}

._keyFigList .item label {
  position: relative;
}

._keyFigList .item ._icon {
  font-style: normal;
  font-size: 0.6rem;
  line-height: 1;
  color: var(--color02);
  position: relative;
  z-index: 1;
}

._keyFigList .item p {
  margin: .15rem 0;
  font-size: .14rem;
  line-height: 2;
  color: rgba(57, 55, 55, 1);
}

._keyFigList .item .digital-number {
  display: inline-block;
  font-style: normal;
  font-size: 0.52rem;
  color: rgba(57, 55, 55, 1);
  font-weight: bold;
  line-height: 1;
}

._keyFigList .item sup {
  margin-left: -12px;
  font-size: 16px;
  align-self: flex-start;
}

._keyFigList .item span {
  margin-left: 5px;
  /* vertical-align: bottom; */
  align-self: flex-end;
  line-height: 1;
}

/* 业务领域 */
.HbusinessAreas {
  padding-top: 3.770833333333334vw;
  padding-bottom: 5.8125vw;
  background: rgba(247, 247, 247, 1) url(../images/business-bg1.png) no-repeat center bottom;
  position: relative;
  overflow: hidden;
}

.HbusinessAreas ._bg {
  position: absolute;
  width: 50%;
  height: 110%;
  top: 0;
  right: 0;
  z-index: 0;
}

.HbusinessAreas ._bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.HbusinessAreas ._bg::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(43, 109, 183, .8);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.HbusinessAreas ._cont {
  align-items: stretch;
  gap: .4rem;
  justify-content: space-between;
}

.HbusinessAreas ._cont ._left {
  width: calc(83.2% - .4rem);
  height: 100%;
}

.areaList .swiper-slide {
  align-items: center;
  gap: .5rem;
  background-color: rgba(247, 247, 247, 1);
  transition: all .3s ease-out;
}

.areaList .swiper-slide.active {
  background-color: transparent;
}

.areaSwiper {
  height: 100%;
}

.areaList ._busAreaBox {
  width: calc(100% - 7.4rem);
}

._busAreaBox ._top {
  align-items: center;
  gap: 8px;
}

._busAreaBox ._num {
  font-style: normal;
  font-size: .6rem;
  font-weight: bold;
  color: var(--color02);
  line-height: 1;
  opacity: .2;
}

._busAreaBox ._title {
  font-size: .32rem;
  font-weight: bold;
  color: var(--color02);
  line-height: 1.8;
}

._busAreaBox ._subtitle {
  margin: .1rem 0 .2rem;
  font-size: .2rem;
  color: rgba(102, 102, 102, 1);
  line-height: 2;
}

._busAreaBox ._desc {
  font-size: .16rem;
  color: rgba(102, 102, 102, 1);
  line-height: 2;
  text-align: justify;
}

.areaList ._img {
  width: 6.9rem;
  height: 5.68rem;
  overflow: hidden;
}

.areaList ._img>img {
  display: block;
  width: 100%;
  height: 100%;
  border: 3px solid #fff;
  object-fit: cover;
}

.HbusinessAreas ._cont ._right {
  width: 16.8%;
}

.areaTab {
  height: 5.68rem;
  position: relative;
}

.areaTab .item {
  padding: .12rem .3rem;
  display: flex;
  flex-flow: row;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.areaTab::before {
  content: "";
  width: 1px;
  height: 200%;
  background-color: rgba(255, 255, 255, .2);
  position: absolute;
  left: calc(.3rem + 0.06rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.areaTab .item .item_icon {
  width: .12rem;
  height: .12rem;
  background: rgba(255, 255, 255, 1);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.areaTab .item .item_name {
  font-size: .2rem;
  line-height: 1.5;
  color: #fff;
  position: relative;
  z-index: 1;
}

.areaTab .item:hover,
.areaTab .item.swiper-slide-thumb-active {
  background-color: rgba(255, 255, 255, .8);
  border-radius: .3rem;
}

.areaTab .item:hover .item_icon,
.areaTab .item.swiper-slide-thumb-active .item_icon {
  background-color: var(--color02);
}

.areaTab .item:hover .item_name,
.areaTab .item.swiper-slide-thumb-active .item_name {
  color: var(--color02);
}

/* 应用案例 */
.Hcase {
  padding: .8rem 0;
  position: relative;
  overflow: hidden;
}

.Hcase ._top,
.Hnews ._top {
  align-items: center;
  justify-content: space-between;
}

.Hcase ._caseTab {
  gap: .15rem;
}

.Hcase ._caseTab a {
  padding: 5px .3rem;
  font-size: .16rem;
  line-height: 2;
  color: rgba(128, 128, 128, 1);
  background-color: rgba(242, 242, 242, 1);
  border-radius: .3rem;
  transition: all .3s;
}

.Hcase ._caseTab a.active,
.Hcase ._caseTab a:hover {
  color: #fff;
  background-color: var(--color02);
}

._caseBox ._slide {
  display: none;
}

._caseBox ._slide>div {
  width: 100%;
  flex-flow: column;
  gap: .3rem;
}

/* 左侧主内容区域 */
.left-section {
  width: 100%;
  position: relative;
  color: white;
  background: #000;
}

/* 左侧背景图片 */
.left-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

/* 左侧文字内容容器（绝对定位） */
.left-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: .2rem .3rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .5) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.left-text .sub-title {
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.8;
}

.left-text .main-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
}

.left-text .desc {
  max-width: 60%;
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.9;
}

.left-text .more-link {
  align-self: flex-end;
  font-size: 14px;
  color: white;
  text-decoration: none;
  opacity: 0.8;
  position: absolute;
  right: 0;
  bottom: 0;
}

.left-text .more-link:hover {
  opacity: 1;
  text-decoration: underline;
}

/* 右侧内容区域（上下两个卡片） */
.right-section {
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 15px;
}

/* 右侧卡片通用样式 */
.right-card {
  width: 100%;
  position: relative;
}

.right-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

/* 右侧卡片文字内容 */
.card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: .2rem .25rem;
  background: rgba(255, 255, 255, 0.95);
}

.card-text .card-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.card-text .card-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

@media (min-width: 768px) {
  ._caseBox ._slide>div {
    flex-flow: row;
    align-items: stretch;
    gap: .3rem;
  }

  .left-section {
    flex: 7;
    height: 100%;
    min-height: unset;
  }

  .left-section img {
    min-height: unset;
  }

  .left-text {
    padding: .4rem .68rem;
  }

  .left-text .more-link {
    right: .68rem;
    bottom: .4rem;
  }

  .left-text .main-title {
    font-size: 32px;
    /* 恢复大屏标题大小 */
  }

  .right-section {
    flex: 3;
    gap: .3rem;
  }

  .right-card {
    height: calc(50% - .15rem);
  }

  .right-card img {
    min-height: unset;
  }
}

/* 媒体查询：小屏手机（375px以下） */
@media (max-width: 375px) {
  .left-text .main-title {
    font-size: 20px;
    /* 超小屏进一步缩小标题 */
  }

  .left-text .desc {
    font-size: 12px;
  }

  .card-text .card-title {
    font-size: 14px;
  }

  .card-text .card-desc {
    font-size: 11px;
  }
}

/* 新闻资讯 */
.Hnews {
  padding: .8rem 0;
  background-color: rgba(248, 248, 248, 1);
  position: relative;
  overflow: hidden;
}

.Hnews ._newsTab {
  gap: .4rem;
}

._newsTab ._item {
  font-size: .2rem;
  color: #000;
}

._newsTab ._item .hoverable_txt:after {
  height: 0.06rem;
  background-color: var(--color02);
}

._newsTab ._item:hover,
._newsTab ._item.active {
  font-weight: bold;
}

._newsBox ._slide {
  display: none;
}

._newsBox ._slide>div {
  align-items: stretch;
  gap: .4rem;
}

._newsBox ._left {
  width: 68%;
  flex-flow: row wrap;
  gap: .4rem;
}

._newsBox ._right {
  width: calc(32% - .4rem);
  background-color: #fff;
  flex-flow: column;
  border-radius: 20px;
}

.card {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-img-top {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.card-img-top>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.35s ease;
}

.card-text-only {
  padding: .3rem .35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: transparent;
}

.card-body {
  padding: .2rem .3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-title {
  font-size: .18rem;
  color: #333;
  line-height: 1.8;
  font-weight: bold;
  margin-bottom: 10px;
}

.card-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.card-date {
  font-size: 12px;
  color: #999;
}

.card-arrow {
  width: .3rem;
  height: .3rem;
  font-size: .24rem;
  color: rgba(168, 168, 168, 1);
  line-height: 1;
}

._newsList .card-footer {
  border-top: none;
}

._newsList .card {
  border-radius: 0;
}

._newsList .card+.card {
  border-top: 1px solid rgba(232, 232, 232, 1);
}
.card:hover .card-title{
  color:var(--color02);
}
.card:hover .card-img-top>img{
  transform: scale(1.12);
}

@media (min-width: 768px) {
  .card-img-top {
    height: 250px;
  }

  .card-title {
    font-size: 17px;
  }
}

@media (min-width: 1024px) {
  ._newsBox ._left .card {
    width: calc((100% - .4rem)/2);
  }

  ._newsBox ._left .card-large {
    width: 100%;
    grid-column: span 2;
    flex-direction: row;
  }

  .card-large .card-img-top {
    width: 52.8%;
    overflow: hidden;
  }
  .card-large .card-img-top img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.35s ease;;
  }

  .card-large .card-body {
    width: 47.2%;
    padding: .3rem .4rem .15rem;
  }

  .card-img-top {
    height: 300px;
  }

  .card-title {
    font-size: .18rem;
  }

  .card-desc {
    font-size: .15rem;
  }
}

@media (max-width: 375px) {
  .card-title {
    font-size: 15px;
  }

  .card-desc {
    font-size: 13px;
  }

  .card-date {
    font-size: 11px;
  }
}

/* 在线咨询 */
.Hconsult {
  padding: .8rem;
  position: relative;
  overflow: hidden;
}

.Hconsult ._bg {
  position: absolute;
  width: 100%;
  height: 120%;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  z-index: -1;
}

.Hconsult ._bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.Hconsult ._bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.Hconsult ._cont {
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.Hconsult ._left {
  flex-flow: column;
  gap: .1rem;
}

.Hconsult ._title {
  font-size: 0.18rem;
  line-height: 1;
}

.Hconsult ._desc {
  font-size: 0.3rem;
  line-height: 1.6;
  font-weight: bold;
}

.Hconsult ._moreBtn {
  border-color: #fff;
  background-color: #fff;
}

/* 底部 */
.footer {
  background-color: rgba(36, 38, 40, 1);
  position: relative;
  overflow: hidden;
}

.footer ._top {
  padding: .35rem 0;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer .f-menu {
  gap: .5rem;
  justify-content: space-between;
  line-height: 2;
}

.footer .f-menu>a {}

.footer .f-menu a .hoverable_txt {
  padding: 3px 0;
  color: #fff;
  transition: color .3s ease;
}

.footer .f-menu a .hoverable_txt:after {
  background-color: rgba(255, 255, 255, .8);
}

.footer ._cont {
  padding: .4rem 0;
  align-items: flex-start;
  flex-flow: row nowrap;
  justify-content: space-between;
  gap: .6rem;
}

.contact_list {
  gap: 1rem;
  justify-content: space-between;
}

.contact_list ._item {
  margin-bottom: .15rem;
  color: #fff;
  flex-flow: column;
  gap: 10px;
}

.contact_list ._item i {
  width: .56rem;
  height: .56rem;
  font-size: .22rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 100%;
}

.contact_list ._item a {
  color: #fff;
}

.contact_list ._item span {
  font-size: .14rem;
}

.contact_list ._item a,
.contact_list ._item p {
  font-size: .22rem;
}

.contact_list ._item p {
}

/* 自媒体二维码 */
.footer ._mediaCode {
  padding: .3rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .2rem;
}

.footer ._mediaCode ._item {
  position: relative;
  display: flex;
}

.footer ._mediaCode ._item:last-of-type {
  margin-right: 0;
}

.footer ._mediaCode ._item>a {
  width: .56rem;
  height: .56rem;
  align-items: center;
  justify-content: center;
  transition: color .3s ease-out;
}

.footer ._mediaCode ._item>a .iconfont {
  font-size: .28rem;
  color: rgba(255, 255, 255, 1);
}

.footer ._mediaCode ._item .follow {
  position: absolute;
  bottom: 120%;
  right: 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  color: #333;
  border-radius: 5px;
  transform: translateY(10px);
  padding: .1rem .15rem;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
  transition: all .35s ease;
  visibility: hidden;
  opacity: 0;
  min-width: max-content;
}

.footer ._mediaCode ._item .follow .follow_text {
  padding-right: .12rem;
  color: #333;
  text-align: justify;
  white-space: nowrap;
  /* 防止文字换行 */
}

.footer ._mediaCode ._item .follow .follow_text .follow_name {
  font-weight: bold;
  margin-bottom: 5px;
  white-space: nowrap;
}

.footer ._mediaCode ._item .follow img {
  display: block;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.footer ._mediaCode ._item>a:hover+.follow {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.contact_code {
  display: flex;
  justify-content: space-between;
  position: relative;
  text-align: center;
  font-size: .16rem;
  line-height: 2;
  color: #fff;
}

.contact_code div {
  width: 1.3rem;
}

.contact_code img {
  display: block;
  width: 100%;
}

.contact_code p {
  line-height: 1;
}

.footer ._copyright {
  padding-top: .1rem;
  padding-bottom: .1rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  justify-content: space-between;
}

.footer ._copyright img {
  display: inline-block;
  vertical-align: middle;
}

.footer ._tech {
  font-size: .13rem;
  color: #fff;
  position: relative;
}

.footer ._copy {
  font-size: .13rem;
  color: #fff;
}

.footer ._copy a,
.footer ._tech a {
  font-size: .13rem;
  color: #fff;
}

/* 右侧悬浮咨询框 */
.fixed_server {
  width: .8rem;
  background-color: var(--color02);
  border-radius: .1rem .1rem .5rem .5rem;
  transition: all 0.5s cubic-bezier(0.25, 0.74, 0.22, 0.99);
  position: fixed;
  right: 10px;
  top: 36%;
  transform: translateY(-50%);
  z-index: 100;
}

.fixed_top {
  height: .56rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "AlimamaShuHeiTiBold";
  font-size: .2rem;
  color: #fff;
  line-height: 1.2;
  text-align: center;
}

.fixed_top img {
  display: block;
  width: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-58%);
  transition: ease 0.5s;
}

.fixed_box {
  padding: 8px 0;
  position: relative;
  z-index: 2;
}

.fixed_box_hd {
  padding: 0 0.05rem;
  color: #fff;
  text-align: center;
}

.fixed_box_hd span {
  font-size: 0.13rem;
  line-height: 1.6;
}

.fixed_box_hd p {
  font-size: 0.12rem;
  line-height: 1.8;
}

.fixed_server .fixed_box>a+a::before {
  content: "";
  width: 62.5%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 48.61%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.fixed_server .fixed_btn {
  padding: .1rem .12rem;
  display: block;
  position: relative;
  font-size: 0.13rem;
  cursor: pointer;
}

.fixed_server .fixed_btn .iconfont {
  line-height: 1;
  text-align: center;
  color: #fff;
  font-size: 0.3rem;
}

/* .fixed_server .fixed_btn p {
  font-size: 0.12rem;
  color: rgba(26, 45, 122, 1);
  line-height: 2;
} */

.fixed_server .fixed_btn .fixed_n {
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  height: 100%;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  line-height: 1;
  transition: opacity 0.5s cubic-bezier(0.25, 0.74, 0.22, 0.99);
}

.fixed_server .weixin_btn .fixed_n {
  position: relative;
}

.fixed_server .fixed_btn .fixed_n>.sec_box {
  color: var(--color01);
  line-height: 1.5;
  white-space: nowrap;
  padding: 0 .18rem;
  height: .56rem;
  display: flex;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.25, 0.74, 0.22, 0.99);
  background-color: #fff;
  box-shadow: 0.1rem 0.2rem 0.3rem -0.05rem rgba(0, 103, 171, 0.2);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translate(-30px, -50%);
}

.fixed_server .fixed_btn .fixed_n>.sec_box p {
  font-size: 0.24rem;
}

.fixed_server .weixin_btn .fixed_n>.sec_box {
  padding: .18rem;
  height: auto;
  flex-direction: column;

}

.fixed_server .weixin_btn .fixed_n>.sec_box p {
  font-size: .14rem;
  line-height: 2;
}

.fixed_server .fixed_btn .fixed_n>.sec_box img {
  display: block;
  width: 150px;
  max-height: 150px;
  max-width: none;
}

.fixed_server .fixed_btn .fixed_n>.sec_box:before {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 10px;
  height: 10px;
  content: "";
  display: block;
  background-color: #ffffff;
  box-shadow: 0.1rem 0.2rem 0.3rem -0.05rem rgba(0, 103, 171, 0.2);
}

.fixed_server .fixed_btn .fixed_n:hover {
  /* background-color: rgba(195, 214, 0, 1); */
}

.fixed_server .fixed_btn .fixed_n:hover>.sec_box {
  opacity: 1;
  transform: translateY(-50%);
  pointer-events: all;
}

.backTop {}

.backTop .fixed_n {
  padding: 5px 6px;
  background-color: var(--color03);
  border-radius: 0 0 .5rem .5rem;
  color: #fff;
  align-items: center;
  justify-content: center;
}

.backTop .fixed_n i {
  font-size: .32rem;
}

#back_top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 888;
  transition: all 0.6s ease;
}

#back_top.onshow {
  opacity: 1;
  -webkit-opacity: 1;
  visibility: visible;
  transform: none;
  -webkit-transform: none;
}

/* 留言咨询 */
.online-box {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  z-index: 0;
  -webkit-transition: all .5s;
}

.online-box::before {
  content: "";
  position: absolute;
  right: -200px;
  top: -200px;
  width: 400px;
  height: 400px;
  background-color: rgba(0, 0, 0, .6);
  -webkit-transform: scale(0);
  transform: scale(0);
  border-radius: 50%;
  z-index: 1;
}

.online-box.open {
  opacity: 1;
  visibility: visible;
  z-index: 10000;
}

.online-box.open::before {
  transform: scale(14);
}

.online-box .booking-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: .84rem;
  height: .84rem;
  cursor: pointer;
  text-align: center;
  position: absolute;
  overflow: hidden;
  right: 0%;
  bottom: 0%;
  visibility: visible;
  opacity: 1;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1) .5s;
}

.online-box .online-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  text-align: center;
  position: absolute;
  right: 0%;
  top: 0%;
  -webkit-transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}

.online-box .online-cont .mod-inner {
  width: 100%;
}

.online-box.open .close:hover {
  -webkit-transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transform: rotate(90deg);
}

.online-box.open .online-cont {
  width: 50%;
  height: 100%;
  opacity: 1;
  visibility: visible;

}

.online-box.open .booking-btn {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.8);

}

.online-box .booking-btn i,
.online-box .booking-btn p {
  position: relative;
  z-index: 5;
  display: block;
}

.online-box .booking-btn i {
  font-size: .24rem;
  line-height: 1;
  margin-bottom: 2px;
  -webkit-animation: rotateIn2 2s ease infinite;
}

@-webkit-keyframes rotateIn2 {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }

  10%,
  20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
    transform: scale3d(.9, .9, .9) rotate(-3deg)
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
}

.online-box .booking-btn p {
  font-size: .12rem;
}

.booking-name {
  padding: 0 8% .5rem;
  width: 100%;
  font-size: .14rem;
  line-height: 1.7;
  opacity: 0;
  visibility: hidden;
  margin-top: .2rem;
}

.booking-name b {
  display: block;
  font-size: .32rem;
  line-height: 2;
  color: #333;
  font-family: "AlimamaShuHeiTiBold";
}

.booking-form {
  width: 100%;
  padding: 0px 8%;
  opacity: 0;
  visibility: hidden;
  margin-top: .2rem;
}

.booking-div {
  justify-content: space-between;
}

.booking-label {
  position: relative;
  width: 45%;
  margin-bottom: .35rem;
}

.booking-all {
  width: 100%;
}

.Message-booking {
  width: 100%;
}

.booking-label span {
  width: auto;
  height: auto;
  line-height: .6rem;
  font-size: .12rem;
  color: #333;
  font-weight: 600;
  position: absolute;
  left: 0%;
  bottom: 0%;
  font-size: .14rem;
  -webkit-transition: all .35s;
}

.Message-booking span {
  width: auto;
  height: auto;
  line-height: .45rem;
  font-size: .12rem;
  position: absolute;
  left: 0%;
  bottom: 0%;
  font-size: .14rem;
  -webkit-transition: all .35s;
}

.booking-form input {
  border: none;
  width: 100%;
  height: .6rem;
  line-height: .6rem;
  background-color: transparent;
  border-bottom: 1px solid rgba(136, 136, 136, 1);
  outline: none;
  color: rgba(102, 102, 102, 1);
  text-indent: 0px;
  position: relative;
  font-size: .14rem;
}

.booking-label::after {
  width: 0%;
  height: 1px;
  position: absolute;
  left: 0%;
  bottom: 0%;
  content: '';
  background-color: rgba(102, 102, 102, 1);
  -webkit-transition: all .35s;
}
.booking-consult{
  flex-flow:row;
  gap: 15px;
  justify-content: flex-end;
}
.booking-label select {
  width: 80%;
  height: 0.6rem;
  line-height: 0.6rem;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(136, 136, 136, 1);
  outline: none;
  color: rgba(102, 102, 102, 1);
  font-size: 0.14rem;
  padding: 0;
  margin: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.1rem center;
  background-size: 0.18rem;
}

/* select 聚焦时下划线变粗并变色（与其他输入框聚焦效果一致） */
.booking-label.focus select {
  border-bottom-color: var(--color02);
  border-bottom-width: 2px;
}

/* 下拉选项样式优化 */
.booking-label select option {
  background-color: #fff;
  color: #333;
  font-size: 0.14rem;
  padding: 0.1rem;
}

/* 移动端适配 */
@media screen and (max-width: 1024px) {
  .booking-label select {
    height: 0.5rem;
    font-size: 0.266rem;
    background-size: 0.24rem;
  }
  
  .booking-label select option {
    font-size: 0.24rem;
  }
}

.booking-label.focus::after {
  width: 100%;
  height: 2px;
  background-color: var(--color02);
  z-index: 2;
}

.booking-label.focus span {
  bottom: .25rem;
  font-size: .12rem;
  opacity: .5;
}

.booking-form input::-webkit-input-placeholder,
.booking-form textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, .7);
}

.booking-textarea {
  display: block;
  border: none;
  width: 100%;
  height: .9rem;
  background-color: transparent;
  border-bottom: 1px solid rgba(136, 136, 136, 1);
  outline: none;
  color: rgba(102, 102, 102, 1);
  text-indent: 0px;
  position: relative;
  font-size: .14rem;
  resize: none;
}

.Message-booking.focus span {
  bottom: .75rem;
}

.key-label {
  align-items: center;
}

.key-label #verify {
  width: 160px !important;
  height: 58px !important;
  border: 1px solid rgba(222, 222, 222, 1);
  cursor: pointer;
}

.key-label #keyBtn {
  margin-left: .18rem;
  cursor: pointer;
  color: rgba(153, 153, 153, 1);
  font-weight: normal;
  text-decoration: underline;
}

.booking-submit {
  margin-top: .2rem;
  font-weight: bold;
  font-size: .16rem;
  position: relative;
}

.booking-submit .submit-btn {
  margin: 0px auto;
  padding: .12rem .54rem;
  display: inline-block;
  border-radius: .36rem;
  line-height: 2;
  text-align: center;
  background-color: #fff;
  border: 1px solid rgba(102, 102, 102, 1);
  border-radius: .3rem;
  cursor: pointer;
  position: relative;
  background: transparent;
  transition: all .3s;
  overflow: hidden;
}

.booking-submit .submit-btn::before {
  content: '';
  position: absolute;
  display: block;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background: var(--color02);
  border-radius: 50% 50% 0 0;
  transform: translateY(100%) scaleY(0.5);
  transition: all 0.6s ease;
  z-index: -1;
}


.booking-submit .submit-btn span {
  padding-left: .2rem;
  display: inline-block;
  color: var(--color02);
  position: relative;
  z-index: 2;
}

.booking-submit .submit-btn span::before {
  content: "";
  width: 9px;
  height: 9px;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  background-color: #333;
  border-radius: 50%;
  transform: translateY(-50%);
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: 1;
}

.booking-submit .submit-btn:hover {
  border-color: var(--color02);
}

.booking-submit .submit-btn:hover::before {
  border-radius: 0;
  transform: translateY(0) scaleY(1);
  transition-delay: 0s;
}

.booking-submit .submit-btn:hover span {
  color: #fff;
}

.booking-submit .submit-btn:hover span::before {
  background-color: #fff;
}

.online-box .close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: .45rem;
  height: .45rem;
  position: absolute;
  right: 8%;
  top: .22rem;
  line-height: .45rem;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all .35s;
  color: var(--color02);
  opacity: 1;
  visibility: visible;
}

.online-box .close i {
  padding-top: 0;
  font-size: .36rem;
  color: rgba(102, 102, 102, 1);
}

.online-box.open .booking-name {
  -webkit-transition: all 600ms cubic-bezier(0.23, 1, 0.32, 1) 1.1s;
  opacity: 1;
  visibility: visible;
  margin-top: 0px;
}

.online-box.open .booking-form {
  -webkit-transition: all 600ms cubic-bezier(0.23, 1, 0.32, 1) 1.2s;
  opacity: 1;
  visibility: visible;
  margin-top: 0px;
}

.online-box.open .booking-submit {
  -webkit-transition: all 600ms cubic-bezier(0.23, 1, 0.32, 1) 1.3s;
  opacity: 1;
  visibility: visible;
  margin-top: 0px;
}

.online-box.open .close {
  -webkit-transition: all 600ms cubic-bezier(0.23, 1, 0.32, 1) 1s;
  opacity: 1;
  visibility: visible;
}

/* 次页 */
.pageBanner {
  width: 100%;
  overflow: hidden;
  background-color: #ddd;
  position: relative;
  z-index: 1;
}

.pageBanner ._box {
  width: 100%;
  height: 100%;
}

.pageBanner ._box>div {
  width: 100%;
  height: 100%;
  position: relative;
}

.pageBanner ._bg {
  width: 100%;
  height: 100%;
  transform: scale(1.15);
  transform-origin: 50% 100%;
  transition: transform 3s cubic-bezier(0.25, 0.74, 0.22, 0.99);
  position: relative;
}

.pageBanner ._bg>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

.pageBanner ._bg::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(43, 109, 183, .5) 0%, rgba(43, 109, 183, 0) 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.pageBanner ._info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  color: #fff;
  padding-top: 0.9rem;
}

.pageBanner ._info ._title {
  line-height: 1;
  position: relative;
}

.pageBanner ._info ._title ._line {
  margin-top: -.26rem;
  margin-left: -.3rem;
  height: .58rem;
}

.pageBanner ._info ._title ._line img {
  width: auto;
  height: 100%;
}

.pageBanner.on ._bg {
  transform: none;
}

.pageBanner.style1 {
  height: 31.2499999vw;
}

.pageBanner.style1 ._info ._title .en {
  margin-top: -.72rem;
  font-size: 0.32rem;
  line-height: 2;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  font-family: "思源宋体";
}

.pageBanner.style1 ._info ._title .cn {
  font-size: 0.36rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.pageBanner.style1 ._info ._title .sub {
  font-size: 0.28rem;
  line-height: 2.4;
  font-weight: 400;
  letter-spacing: 0.5;
}

.pageBanner.style2 {
  height: 34.895833333333336vw;
}

.pageBanner.style2 ._info ._title {
  text-align: center;
}

.pageBanner.style2 ._info ._title .cn {
  font-size: 0.56rem;
  margin-bottom: 0.2rem;
}

.pageBanner.style2 ._info ._title .en {
  font-size: 0.3rem;
  text-transform: uppercase;
}

.pageBanner.style3 {
  height: 31.25vw;
}

/* 次页子菜单栏 */
.below {
  margin-top: -.8rem;
  height: 0.8rem;
  line-height: 0.8rem;
  position: relative;
  z-index: 2;
}

.below .below_r {
  margin-left: auto;
  width: 50%;
  background-color: rgba(33, 72, 132, 0.9);
  padding-right: calc(0.7rem + 8px);
  position: relative;
}

.below .below_r::after {
  content: "";
  width: 1rem;
  height: 100%;
  background: url(../image/mask.png) no-repeat center;
  background-size: 68%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%)
}

.slidenav {
  text-align: center;
}

.slidenav .swiper-slide {
  width: 20%;
}

.slidenav ._item>a {
  font-size: .18rem;
  color: #333;
  position: relative;
  transition: color 0.3s ease;
}

.slidenav ._item>a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0.2rem;
  border-right: 1px solid #ddd;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.slidenav .swiper-slide:last-of-type ._item>a:after {
  display: none;
}

.slidenav ._item>a .hoverable_txt {
  color: #fff;
  line-height: 1.25;
  padding: 3px 0;
}

.slidenav ._item>a .hoverable_txt:after {
  background-color: var(--color01);
}

.slidenav .swiper-slide.active ._item>a {
  font-weight: bold;
  pointer-events: none;
}

.below .below_r .slidenav_next {
  position: absolute;
  right: 0;
  top: 0;
  width: calc(0.7rem + 8px);
  padding-right: 8px;
  z-index: 5;
}

.below .below_r .slidenav_next>a {
  display: block;
  color: var(--color01);
  background-color: #c9def6;
  text-align: center;
  transition: all 0.3s ease;
}

/* page about us */
.pageAbout {
  padding: .8rem 0;
  background-color: #fff;
}

.pageAbout ._box {
  align-items: stretch;
  gap: 1rem;
}

.pageAbout ._left {
  width: calc(100% - 4.75rem)
}

.pageAbout ._right {
  width: 3.75rem;
}

.pageAbout ._title {
  font-size: .36rem;
  color: rgba(0, 0, 0, 1);
  font-weight: bold;
  line-height: 1.8;
  position: relative;
}

.pageAbout ._title::before {
  content: "";
  width: 1.5rem;
  height: 1.28rem;
  background: url(../images/ico1.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  left: -0.75rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.pageAbout ._subtitle {
  padding-bottom: .16rem;
  font-size: .16rem;
  color: rgba(51, 51, 51, 1);
  line-height: 2;
  text-transform: capitalize;
  position: relative;
}

.pageAbout ._subtitle::after {
  content: "";
  width: 1rem;
  height: 4px;
  background-color: var(--color02);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

._crumbBox {
  flex-flow: row wrap;
  gap: .2rem;
}

._crumbBox .item {
  width: 3rem;
  border-radius: .2rem;
}

._crumbBox .item>img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: .2rem;
}

._crumbBox .text {
  width: calc(100% - 3.2rem);
  font-size: .56rem;
  font-weight: bold;
  color: rgba(46, 117, 181, .5);
  font-weight: bold;
  writing-mode: vertical-rl;
  line-height: 1;
}

._crumbBox span.item {
  width: 1.3rem;
  height: 1.3rem;
  background-color: var(--color02);
}

._crumbBox .item:last-child {
  width: calc(100% - 1.5rem);
}

/* page history */
.pageHistory {
  position: relative;
  overflow: hidden;
}

.pageHistory ._bg {
  width: 100%;
  height: 100%;
  /* position: absolute;
  top: 0;
  left: 0;
  z-index: 0; */
}

.pageHistory ._bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* position: absolute;
  right: 0;
  top: 0; */
  z-index: -1;
}

.pageHistory ._bg::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .5) 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

._historyList {
  padding: 1rem 0;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1;
}

._historyList ._item {
  width: 25%;
  position: absolute;
}
._historyList ._item>div{
  align-items: stretch;
  flex-flow: row nowrap;
  gap: .2rem;
  position: relative;
}

._historyList ._item ._driftLine {
  width: 1px;
  background-color: rgba(181, 181, 181, 1);
  position: relative;
}

._driftLine ._icon {
  width: 0.8rem;
  height: 0.8rem;
  font-size: .28rem;
  color: #fff;
  line-height: 1;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1;
}
._driftLine ._icon::before{
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .8;
  animation:soak 1.3s infinite cubic-bezier(.36, 0,.7,1) alternate backwards;
  z-index: -1;

}
._driftLine ._icon::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--color02);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@keyframes soak{
	0% {transform:scale(1);-webkit-transform:scale(1);}
	100% {transform:scale(1.5);-webkit-transform:scale(1.5);}
}
._historyList ._item ._info {
  padding-top: .9rem;
  padding-right: .6rem;
}

._historyList ._item ._year {
  font-size: .32rem;
  color: var(--color02);
  font-weight: bold;
  line-height: 1.6;
}

._historyList ._item ._stage {
  font-size: .18rem;
  color: rgba(128, 128, 128, 1);
  font-weight: bold;
  line-height: 1.8;
}

._historyList ._item ._txt {
  font-size: .16rem;
  line-height: 1.8;
  text-align: justify;
}
._historyList ._item:first-child ._driftLine ._icon{
  width: .66rem;
  height: .66rem;
}
._historyList ._item.drift01{
  top: 50%;
  left: 0;
}
._historyList ._item.drift02{
  top: 45%;
  left: 25%;
}
._historyList ._item.drift03{
  top: 30%;
  left: 50%;
}
._historyList ._item.drift04{
  top: 15%;
  left: 75%;
}
._historyList ._item>div{
  animation:aniTop 1.2s infinite cubic-bezier(.36, 0,.7,1) alternate backwards;
  -webkit-animation:aniTop 1.2s infinite cubic-bezier(.36, 0,.7,1) alternate backwards;
  will-change: transform;
}
._historyList .drift01>div,._historyList .drift01 ._driftLine ._icon:after{animation-delay:.2s;}
._historyList .drift02>div,._historyList .drift02 ._driftLine ._icon:after{animation-delay:.4s;}
._historyList .drift03>div,._historyList .drift03 ._driftLine ._icon:after{animation-delay:.6s;}
._historyList .drift04>div,._historyList .drift04 ._driftLine ._icon:after{animation-delay:.8s;}
@keyframes aniTop{
  0% {transform:translateY(0);}
  100% {transform:translateY(-30px);}
}
/* page culture */
.pageCulture {
  padding-top: .8rem;
  padding-bottom: .8rem;
  position: relative;
  overflow: hidden;
}

.pageCulture ._bg {
  width: 100%;
  height: 110%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.pageCulture ._bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.pageCulture ._bg::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.pageCulture ._box,.pageHonor ._box{
  align-items: center;
  justify-content: center;
  flex-flow: column;
  gap: .6rem;
}
.pageCulture ._top{
  max-width: 68%;
  margin: 0 auto;
}
.pageCulture ._top ._title,.pageHonor ._top ._title{
  font-size: .32rem;
  font-weight: bold;
  color: #333;
  line-height: 2;
}
.pageCulture ._top .pubInfo .info_text p,.pageHonor ._top .pubInfo .info_text p{
  text-indent: 0;
  text-align: center;
}
._cultureList{
  width: 100%;
  align-items: stretch;
  justify-content: space-between;
}
._cultureList ._item{
  padding: 0 .3rem;
  width: 28%;
  flex-flow: column;
  align-items: center;
  gap: .3rem;
}
._cultureList ._item i{
  width: 1rem;
  height: 1rem;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid var(--color02);
  border-radius: 100%;
  color: var(--color02);
  font-size: .36rem;
  line-height: 1;
}
._cultureList ._item:nth-child(3) i{
  font-size: .5rem;
}
._cultureList ._item ._num{
  font-size: .32rem;
  color: var(--color02);
  opacity: .3;
  font-weight: bold

}
._cultureList ._item ._info{
  margin-top: -.6rem;
}
._cultureList ._item ._title{
  font-size: .18rem;
  line-height: 2;
  color: #333;
  font-weight: bold;
}
._cultureList ._item ._text{
  font-size: .16rem;
  color: rgba(102, 102, 102, 1);
}
/* page honor */
.pageHonor {
  padding-top: .8rem;
  padding-bottom: .8rem;
  position: relative;
  overflow: hidden;
}
.pageHonor ._top{
  padding: 0 1rem;
}
._category{
  flex-flow: row;
  gap: .2rem;
  justify-content: center;
  align-items: stretch;
}
._category>a{
  padding: .15rem .4rem;
  font-size: .18rem;
  line-height: 1;
  color: rgba(102, 102, 102, 1);
  background-color: rgba(239, 239, 239, 1);
  border: 1px solid rgba(239, 239, 239, 1);
  transition: color .3s ease,border-color .3s ease;
}
._category>a.active,._category>a:hover{
  font-weight:bold;
  color: #fff;
  background-color: var(--color02);
  border-color:var(--color02)
}
._honorList{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
}
._honorList ._item{
}
._honorList ._img{
  padding: .3rem .4rem;
  width: 100%;
  height: 3.5rem;
  overflow: hidden;
  z-index: 1;
}
._honorList ._img img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .3s ease;
}
._honorList ._img::before{
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .16);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease-in-out;
  z-index: 0;
}
._honorList ._img ._icon{
  width: .4rem;
  height: .4rem;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: #fff;
  background-color: var(--color02);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all .3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}
._honorList ._img ._bg{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
._honorList ._img ._bg>img{
  object-fit: cover;
}
._honorList ._name{
  padding: .2rem .3rem;
  font-size: .18rem;
  line-height: 2;
  color: rgba(51, 51, 51, 1);
  text-align: center;
  background-color: rgba(251, 251, 251, 1);
  transition: all .3s ease-in-out;
}
._honorList ._item:hover ._img::before {
  opacity: 1;
  visibility: visible;
}
._honorList ._item:hover ._icon{
  opacity: 1;
  visibility: visible;
}
._honorList ._item:hover ._icon::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0%;
  top: 0%;
  background: var(--color02);
  border-radius: 50%;
  animation: scaleAnimate 1s ease infinite;
  -webkit-animation: scaleAnimate 1s ease infinite;
}
._honorList ._item:hover ._name{
  color: #fff;
  font-weight: bold;
  background-color: var(--color02);
}
@-webkit-keyframes scaleAnimate {
  from {
    -webkit-transform: scale(1);
    opacity: 0.5;
  }

  to {
    -webkit-transform: scale(2);
    opacity: 0;
  }
}

/* page product */
.page-product {
  background-color: rgba(245, 245, 245, 1);
  position: relative;
  overflow: hidden;
}

._proBox {
  /* padding: 0 8.33333333vw; */
  align-items: stretch;
}

._classifySidebar {
  width: 20.333vw;
}

._classifySidebar ._hd {
  background-color: var(--color02);
  height: 1rem;
  position: relative;
}

._classifySidebar ._hd>div {
  padding: 0 .3rem;
  width: 100%;
  font-size: .3rem;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  position: relative;
  display: flex;
  align-items: center;
  gap: .1rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

._classifySidebar ._hd>div::before {
  content: "";
  width: 22px;
  height: 22px;
  background: url(../images/ico2.svg) no-repeat center;
  background-size: contain;
  z-index: 0;
}

._classifySidebar ._hd p {
  display: flex;
  align-items: center;
}

._classifyList {
  padding: .3rem .5rem .3rem 0;
  display: flex;
  flex-flow: column;
  gap: .3rem;
}

._classifyList ._item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .15rem .3rem;
  background-color: rgba(89, 86, 86, 1);
  border-radius: 0 .5rem .5rem 0;
  transition: all .3s;
}

._classifyList ._item::before {
  content: "";
  margin-right: .1rem;
  width: .18rem;
  height: .18rem;
  border: 2px solid #fff;
  border-radius: 100%;
  z-index: 0;
}

._classifyList ._item::after {
  content: "\e625";
  font-size: .2rem;
  line-height: 1;
  font-family: "iconfont";
  margin-left: auto;
  color: #fff;
  z-index: 0;
}

._classifyList ._item span {
  font-size: .2rem;
  color: #fff;
}

._classifyList ._item:hover,
._classifyList ._item.active {
  background-color: var(--color02);
}

._productList {
  flex: 1;
  padding: .5rem 0 .5rem .5rem;
  display: flex;
  flex-flow: column;
  gap: .4rem;
  position: relative;
}

._productList::before {
  content: "";
  width: 200%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

._productList ._item {
  padding: .3rem;
  border: 1px solid rgba(229, 229, 229, 1);
  position: relative;
  z-index: 1;
}

._productList ._item>div {
  display: flex;
  align-items: stretch;
  flex-flow: row;
  gap: .4rem;
}

._productList ._item ._img {
  width: 42%;
  height: 4rem;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

._productList ._item ._img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s;
}

._productList ._item ._info {
  flex: 1;
  flex-flow: column;
  align-items: flex-start;
  gap: .2rem;
}

._productList ._info ._name {
  font-size: .26rem;
  line-height: 2;
  color: rgba(51, 51, 51, 1);
  font-weight: bold;
}

._productList ._info ._desc {
  font-size: .16rem;
  color: rgba(102, 102, 102, 1);
  line-height: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

._productList ._info ._phone {
  font-size: .18rem;
  color: rgba(153, 153, 153, 1);
  line-height: 1;
  width: min-content;
  white-space: nowrap;
}

._productList ._item>div:hover ._img img {
  transform: scale(1.1);
}

._productList ._item>div:hover ._info ._name {
  color: var(--color02);
}

._productList ._moresBtn {
  padding-top: .3rem;
  width: 100%;
  justify-content: space-between;
}

._productList ._moresBtn ._more {
  gap: .2rem;
}

._productList ._moresBtn>a {
  padding: .15rem .2rem;
  flex: 1;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  gap: .1rem;
  font-size: .16rem;
  color: #fff;
  background-color: var(--color02);
  border: 1px solid var(--color02);
  line-height: 1;
}

._productList ._moresBtn>a i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .2rem;
  line-height: 1;
}

._productList ._moresBtn>a+a {
  background-color: #fff;
  border: 1px solid rgba(229, 229, 229, 1);
  color: rgba(102, 102, 102, 1);
}

/* 产品详情 */
._productDel {
  padding-bottom: .5rem;
  padding-top: 0.4rem;
  background-color: #fff;
  position: relative;
}
._place {
  font-size: .14rem;
  line-height: 1;
}

._place span,
._place a {
  color: #666;
  transition: color 0.3s ease;
}
.page-product-container {
  margin-top: .4rem;
}

.page-product-top {
  margin-top: .3rem;
  display: flex
}

.page-product-top-left {
  padding: .4rem;
  width: 44.5%;
  position: relative;
  display: flex;
  flex-flow: column;
  gap: .3rem;
  border: 1px solid rgba(202, 210, 224, 1);
}

.page-product-album {
  width: 100%;
  height: 4.52rem;
}

.page-product-album .swiper-album {
  height: 100%
}

.page-product-thumbnail {
  width: 100%;
  height: 1.02rem
}

.swiper-thumbnail {
  height: 100%
}

.page-product-top-right {
  padding: .4rem .4rem .4rem .5rem;
  flex: 1;
  border: 1px solid rgba(202, 210, 224, 1);
  border-left: none;
}

.page-product-album {
  position: relative
}

.page-product-album ul li img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.page-product-thumbnail ul li {
  border: solid 2px rgba(202, 210, 224, 1);
  border-radius: 5px;
  cursor: pointer;
  height: auto;
  overflow: hidden
}

.page-product-thumbnail ul li img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.page-product-thumbnail ul li.swiper-slide-thumb-active {
  border-color: var(--color03)
}

.album-pagination {
  width: .7rem;
  right: .15rem !important;
  background: var(--color02);
  border-radius: .1rem;
  font-size: .12rem;
  line-height: 2;
  color: #fff;
  left: auto
}

.album-pagination span:first-child {
  font-size: .16rem;
  font-weight: 700
}

.page-product-top-right .page-product-title {
  margin-bottom: .2rem;
  padding-top: .2rem;
  font-size: .24rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 1);
  line-height: 2;
  position: relative;
}

.page-product-top-right .page-product-title::before {
  content: "PRODUCT";
  font-size: .6rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(197, 25, 38, .2);
  text-transform: uppercase;
  font-weight: bolder;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}
.page-product-subtitle{
  font-size: .24rem;
  font-weight: bold;
  color: rgba(0, 0, 0, 1);
  line-height: 2;
}
.page-product-top-summary {
  margin-bottom: .15rem;
  font-size: .16rem;
  color: rgba(102, 102, 102, 1);
  line-height: 2;
}

.page-product-button {
  display: flex;
  flex-flow: row;
  gap: .3rem;
}

.page-product-button a {
  padding: 0 .3rem;
  height: .5rem;
  border-radius: .3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .1rem;
  font-size: .18rem;
  line-height: 1.6;
  color: #fff;
  background-color: var(--color02);
}

.page-product-button a i {
  font-size: .24rem;
  color: #fff;
  line-height: 1;
}

.page-product-button a:nth-child(2) {
  background-color: var(--color03);
}

.page-product-bottom {
  margin-top: .5rem;
  padding-top: .5rem;
  padding-bottom: .8rem;
  background-color: #f4f7fa;
}

.page-product-bottom-title {
  margin-bottom: .3rem;
  position: relative;
  align-items: center;
  flex-flow: row nowrap;
  gap: .1rem;
}
.page-product-bottom-title::before {
  content: "";
  width: 22px;
  height: 22px;
  background: url(../images/ico3.svg) no-repeat center;
  background-size: contain;
}

.page-product-bottom-title span {
  font-size: .32rem;
  color: rgba(51, 51, 51, 1);
  line-height: 1;
  font-weight: 700;
}
.page-product-bottom-title ._line{
  flex: 1;
  height: 8px;
  border: 1px solid var(--color02);
  border-left: none;
  border-right: none;
}
._pageParameter{
  font-size: .16rem;
  line-height: 2;
  overflow-x: scroll;
}
._pageParameter img {
  max-width: 100%;
  height: auto !important;
}

._pageParameter table {
  width: 100%;
  position: relative;
  border: none;
  margin: 0 auto 10px;
  border-collapse: collapse;
  color: #343434;
}

._pageParameter table td {
  border: 1px solid rgba(204, 204, 204, 1);
  white-space: nowrap;
  padding: .1rem;
  font-size: .16rem;
  line-height: 2;
  transition: height 0.15s ease-in-out;
  text-align: center;
}

.page-product-details {
  padding: .3rem 0;
}

.page-product-text {
  font-size: .16rem;
  color: gray;
  line-height: 2
}

.page-product-text img {
  max-width: 100%;
  height: auto !important;
}
._relateProBox {
  padding-top: .3rem;
}
._relateProBox ._top .cn{
  font-size: .28rem;
  font-weight: bold;
  color: var(--color02);
}
._relateProList ._item {
  border: 1px solid rgba(202, 210, 224, 1);
}

._relateProList ._item ._img {
  height: 3.2rem;
  border-bottom: 1px solid rgba(202, 210, 224, 1);
}

._relateProList ._item ._img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

._relateProList ._item ._title {
  padding: .1rem .2rem;
  font-size: .16rem;
  line-height: 2;
  color: rgba(51, 51, 51, 1);
}

._pagePvnBtn {
  margin-top: .5rem;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

._pagePvnBtn>p {
  padding: .1rem .8rem;
  font-size: .16rem;
  line-height: 1.6;
  background-color: rgba(240, 240, 240, 1);
  border-radius: .3rem;
}
._pagePvnBtn>p a{
  color: rgba(102, 102, 102, 1);
}
._pagePvnBtn>p:nth-child(2) {
  background-color: var(--color02);
}

._pagePvnBtn>p:nth-child(2) a {
  color: #fff;
}
/* page application */
._pageApplication{}
._appSection1{
  padding-top: .6rem;
  padding-bottom: .6rem;
  align-items: flex-start;
  justify-content: space-between;
  flex-flow: row nowrap;
  gap: 2rem;
}
._appSection1 h2._title{
  max-width: 24%;
  font-size: .4rem;
  color: rgba(0, 0, 0, 1);
  font-weight: bold;
  line-height: 1.6;
}
._appSection1 ._text{
  font-size: .16rem;
  color: rgba(102, 102, 102, 1);
  line-height: 1.8;
  text-align: justify;
  flex: 1;
  flex-flow: row nowrap;
  justify-content: space-between;
  gap: .68rem;
}
._appSection1 ._text p{
  flex: 1;
}
._appSection2{
  padding-top: 8.2rem;
  padding-bottom: .4rem;
  overflow: hidden;
}

._appSection2 ._bg {
  position: absolute;
  width: 100%;
  height: 110%;
  top: 0;
  right: 0;
  z-index: 0;
}

._appSection2 ._bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

._appSection2 ._bg::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .5) 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
._appSection2 ._list{
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: space-between;
  gap: .6rem;
}
._appSection2 ._item{
  align-items: flex-start;
  display: flex;
  flex: 0 0 auto;
  flex-flow: row;
  gap: 10px;
  width: calc((100% - 0.6rem * 4)/5);
  height: min-content;
  overflow: visible;
  padding: 12px;
  position: relative;
}
._appSection2 ._item span{
  font-size: .18rem;
  color: rgba(255, 255, 255, .9);
  font-weight: bold;
  line-height: 1.2em;
  width: .3rem;
}
._appSection2 ._item p{
  color: rgba(255, 255, 255, 0.78);
  font-size: .16rem;
}
._appSection3{
  padding: .6rem 0;
  background-color: rgba(28, 26, 34, 1);
}
.appSection ._title,._pageNews ._title{
  font-size: .32rem;
  font-weight: bold;
  line-height: 2;
  color: rgba(0, 0, 0, 1);
}
.appSection._appSection3 ._title{
  color: #fff;
}

._appSection4{
  padding: .6rem 0;
}
._industryList{
  flex-flow: row wrap;
  justify-content: flex-start;
  gap: .7rem;
}
._industryList ._item{
  width: calc((100% - 0.7rem)/2);;
}
._industryList ._item ._img{
  height: 4.6rem;
}
._industryList ._item ._img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
._industryList ._item ._text{
  padding: .4rem .1rem 0;
  justify-content: space-between
}
._industryList ._item ._name{
  flex: 1;
  font-size: .24rem;
  line-height: 1.4;
  color: #fff;
}
._industryList ._item ._name sup{
  margin-left: 5px;
  font-size: 14px;
  color: rgba(255, 255, 255, .68);
}
._industryList ._item ._desc{
  flex: 1;
  font-size: .16rem;
  color: rgba(255, 255, 255, .68);
  line-height: 1.6;
}
._directionList{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: .4rem;
  align-items: stretch;
}
._directionList ._item{
  height: 3.28rem;
  border-radius: .6rem 0 .6rem 0;
  overflow: hidden;
}
._directionList ._item::before{
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .5) 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
._directionList ._item:nth-child(2){
  grid-column: 2 / span 2;
}
._directionList ._item:nth-child(4){
  grid-column: 1 / span 2;
}
._directionList ._item>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
._directionList ._item ._text{
  width: 100%;
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  padding: .2rem .3rem;
  font-size: .16rem;
}
._directionList ._item ._text h4{
  font-size: .18rem;
  font-weight: normal;
  line-height: 2;
}
._directionList ._item ._text p{
  font-size: .14rem;
  line-height: 1.6;
}

._appSection5{
  padding: .6rem 0;
  background-color: rgba(248, 248, 248, 1);
  overflow: hidden;
}
._appAdvList{
  flex-flow: column;
  gap: .4rem;
}
._appAdvList ._item{
  flex-flow: row;
  align-items: stretch;
  background-color: #fff;
}
._appAdvList ._item ._img{
  width: 50%;
}
._appAdvList ._item  ._img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
._appAdvList ._item ._text{
  flex: 1;
  padding: 1rem 1.6rem 1rem 1.2rem;
}
._appAdvList ._item i{
  font-size: .6rem;
  color: rgba(102, 102, 102, 1);
  line-height: 1;
  position: absolute;
  right: .6rem;
  top: .6rem;
}
._appAdvList ._item h4{
  font-size: .28rem;
  font-weight: bold;
  color: rgba(0, 0, 0, 1);
  line-height: 2;
}
._appAdvList ._item p{
  font-size: .16rem;
  color: rgba(102, 102, 102, 1);
  line-height: 1.8;
  text-align: justify
}
._appAdvList ._item:nth-child(even){
  flex-flow: row-reverse;
}
/* page news */
._pageNews ._box{
  padding: .6rem 0;
}
._pageNews ._box:nth-child(even){
  background-color: rgba(247, 247, 247, 1);
}
.pageNews__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
}

.pageNews__list .item a {
  display: block;
}

.pageNews__list .item a figure {
  height: 2.78rem;
  overflow: hidden;
}

.pageNews__list .item a figure img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
  object-fit: cover;
  transition: all 0.4s;
}

.pageNews__list .item a figure img:hover {
  transform: scale(1.1);
}

.pageNews__list .item a figcaption {
  background-color: #f3f3f3;
  padding: 0.35rem 0.35rem 0.4rem;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
}

.pageNews__list .item a figcaption ._title {
  font-size: 0.24rem;
  color: #000;
  height: 2.8em;
  line-height: 1.4;
  font-weight: bold;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

._pageNews ._date {
  font-family: 'gilroy_Medium';
  color: #999;
  font-size: .14rem;
  line-height: 1;
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: row;
  gap: .1rem;
}
._pageNews ._date span{
  align-items: center;
  gap: 5px;
}

.pageNews__list .item a figcaption ._desc {
  font-size: .18rem;
  color: #666;
  height: 3.6em;
  line-height: 1.8;
}
/* 新闻详情 */
._pageNewsDel {
  padding-top: 0.6rem;
  padding-bottom: .6rem;
  /* background-color: #f0f4f7; */
  position: relative;
}

._pageNewsDel ._cnt {
  flex-flow: row;
  gap: .5rem;
}

._pageNewsDel ._info {
  padding-bottom: 4.166666666666667vw;
  width: calc(100% - 5.1rem);
  background-color: #fff;
}

._pageNewsDel ._info ._top {
  border-bottom: 1px solid #eee;
  padding-bottom: 0.2rem;
}

._pageNewsDel ._info ._top ._title {
  font-size: 0.3rem;
  margin-bottom: 0.25rem;
  font-weight: bold;
}

._pageNewsDel ._info ._top ._line {
  font-size: .14rem;
  color: #999;
  align-items: center;
  gap: .15rem;
}

._pageNewsDel ._info ._top ._line span {
  align-items: center;
  gap: .1rem;
}

._pageNewsDel ._info ._contin {
  padding-top: 0.4rem;
  padding-bottom: 0.6rem;
  font-size: .16rem;
  color: #666;
  line-height: 2;
  text-align: justify;
}

._pageNewsDel ._info ._contin p {
  margin-bottom: 15px;
}

._pageNewsDel ._info ._contin img {
  max-width: 100%;
  height: auto !important;
  display: inline-block;
}

._pageNewsDel ._pagePvnBtn {
  background-color: rgba(249, 249, 249, 1);
  padding: .18rem .4rem;
  align-items: center;
  justify-content: space-between;
}
._pageNewsDel ._pagePvnBtn p{
  padding: 0;
}
._pageNewsDel ._pagePvnBtn p>a {
  position: relative;
  color: rgba(27, 28, 32, 1);
}

._pageNewsDel ._pagePvnBtn p:first-child,
._pageNewsDel ._pagePvnBtn p:last-child{
  background-color: transparent;
}
._pageNewsDel ._pagePvnBtn p:first-child a,
._pageNewsDel ._pagePvnBtn p:last-child a {
  display: flex;
  align-items: center;
  gap: .1rem;
}

._pageNewsDel ._pagePvnBtn p:first-child a::before {
  content: "\e664";
  font-family: "iconfont";
  font-size: .18rem;
  line-height: 1;
}

._pageNewsDel ._pagePvnBtn p:last-child a::after {
  content: "\e65f";
  font-family: "iconfont";
  font-size: .18rem;
  line-height: 1;
}
._pageNewsDel ._pagePvnBtn p:nth-child(2){
  background-color: transparent;
}
._pageNewsDel ._pagePvnBtn p:nth-child(2)>a {
  padding: .1rem .3rem;
  border: 1px solid var(--color02);
  color: var(--color02);
}

._pageNewsDel ._sell {
  width: 4.9rem;
}
._pageNewsDel ._sell::before{
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(238, 238, 238, 1);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

._pageNewsDel ._sell ._cont {
  padding: 0 0 0 0.5rem;
  background-color: #fff;
}

/* ._pageNewsDel ._sell ._title {
  font-size: .16rem;
  font-weight: bold;
  color: var(--bg-green);
} */

._pageNewsDel ._sell ._list {}

._pageNewsDel ._sell ._list ._item {
  margin-bottom: .2rem;
}

._pageNewsDel ._sell ._list ._item>a {
  border-bottom: 1px solid #ddd;
  position: relative;
}

._pageNewsDel ._sell ._list ._item>a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #ddd;
  transition: width 0.6s ease;
}

._pageNewsDel ._sell ._list ._item>a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  border-bottom: 1px solid var(--bg-red);
  transition: width 0.6s ease;
}

._pageNewsDel ._sell ._list ._item ._img {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.20608899297423%;
  overflow: hidden;
}

._pageNewsDel ._sell ._list ._item ._img>img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

._pageNewsDel ._sell ._list ._item ._txt {
  padding: 0.3rem 0 .2rem;
  line-height: 1;
}

._pageNewsDel ._sell ._list ._item ._txt ._name {
  font-size: .16rem;
  color: #333;
  margin-bottom: 0.15rem;
  transition: color 0.3s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

._pageNewsDel ._sell ._list ._item ._txt ._desc {
  font-size: .14rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0.1rem;
}

._pageNewsDel ._sell ._list ._item ._txt ._more {
  font-size: .14rem;
  color: #999;
  align-items: center;
  gap: .08rem;
}

._pageNewsDel ._sell ._list ._item:hover>a:after {
  width: 100%;
}
/* page contact */
._pageContact {
  padding-top: .6rem;
  position: relative;
  overflow: hidden;
}

._pageContact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(249, 249, 249, 1) url(../images/map.png) no-repeat right 0;
  background-size: contain;
  z-index: -1;
}

._pageContact ._cnt {
  margin-bottom: .4rem;
  gap: .4rem;
}

/* 左侧表单区域 */
.form-section {
  padding: .5rem .6rem;
  flex: 1;
  position: relative;
  background-color: #fff;
}

/* 右侧联系信息区域 */
.info-section {
  flex: 1;
  padding: 15px 20px 0;
}

/* 标题样式 */
.section-title {
  margin-bottom: .3rem;
  font-size: .32rem;
  font-weight: bold;
  color: #333;
}

/* 表单副标题 */
.form-desc {
  color: #666;
  font-size: .14rem;
  margin-bottom: .3rem;
}

/* 表单网格布局 */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

/* 表单控件通用样式 */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #999;
}

/* 必选标记 */
.form-item {
  position: relative;
}

.form-item.required::after {
  content: '*';
  position: absolute;
  right: 10px;
  top: 12px;
  color: red;
}

/* 文本域 */
.form-textarea {
  grid-column: 1 / 3;
  height: 120px;
  resize: none;
}

/* 验证码区域 */
.captcha-group {
  display: flex;
  align-items: center;
  gap: 10px;
  grid-column: 1 / 3;
}

.captcha-input {
  flex: 1;
}

.captcha-img {
  width: 140px;
  height: 42px;
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  letter-spacing: 2px;
  color: #666;
}

.captcha-group .submit-btn {
  width: 120px;
  height: 42px;
  background-color: var(--color02);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: all  0.3s ease;
}

.captcha-group .submit-btn:hover {
  background-color: var(--color01);
}

/* 联系信息项 */
.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.info-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

.info-text {
  flex: 1;
  align-items: center;
  gap: .1rem;
}

.info-label {
  font-size: .16rem;
  color: rgba(27, 28, 32, 1);
}

.info-value {
  font-size: 16px;
  color: rgba(128, 128, 128, 1);
  gap: .2rem;
}

/* 二维码区域 */
.qrcode-group {
  display: flex;
  justify-content: flex-start;
  margin-top: 40px;
}

.qrcode-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.qrcode-img {
  width: 120px;
  height: 120px;
  border: 1px solid #eee;
}

.qrcode-img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qrcode-label {
  font-size: 14px;
  color: #666;
}

/* 响应式适配 */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    padding: 30px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-textarea,
  .captcha-group {
    grid-column: 1 / 2;
  }

  .qrcode-group {
    flex-wrap: wrap;
    gap: 20px;
  }
}


/* pages 分页 */
.pages {
  margin-top: 0.3rem;
  padding-bottom: 0.3rem;
  text-align: center;
  position: relative;
}

.pages a,
.pages b {
  margin: 5px;
  display: inline-block;
  font-size: 0.14rem;
  color: #777777;
  border: none;
  line-height: 32px;
  height: 32px;
  padding: 0 12px;
  background-color: #f6f6f6;
}

.pages b {
  background: var(--color02);
  color: #fff;
}

.pages a:hover {
  color: var(--color02);
}

.pages a:first-child {
  display: none;
}

@media (max-width: 760px) {
  .pages a,
  .pages b {
    font-size: 12px;
    height: 24px;
    line-height: 24px;
    padding: 0 8px;
  }
}


/*电端加上鼠标效果/动画 */
@media screen and (min-width: 1025px) {

  .rollAni,
  .font_effect {
    visibility: hidden;
  }

  .hoverable:hover .hoverable_txt:after,
  ._newsTab ._item.active .hoverable_txt:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }

  .pc-nav .operation ._item:hover {
    /* background-color: rgba(0, 0, 0, 0.2); */
  }

  /* .pc-nav .language .language_item a:hover {
    background-color: #eee;
    color: var(--color01);
  } */

  .pc-nav .operation ._item:hover .search {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .pc-nav .search ._dt>button:hover {
    color: var(--color01);
  }

  .menu ._list ._item ._b li a:hover {
    color: var(--color01);
  }

  .header .menu ._list ._item ._a,
  .header .menu ._list ._item ._b li {
    animation-name: fadeInUpSmall;
    animation-duration: 0.65s;
    animation-fill-mode: both;
  }

  .header .menu ._list ._item ._a {
    animation-delay: 0.2s;
  }

  .header .menu ._list ._item ._b li:nth-child(1) {
    animation-delay: 0.3s;
  }

  .header .menu ._list ._item ._b li:nth-child(2) {
    animation-delay: 0.4s;
  }

  .header .menu ._list ._item ._b li:nth-child(3) {
    animation-delay: 0.5s;
  }

  .header .menu ._list ._item ._b li:nth-child(4) {
    animation-delay: 0.6s;
  }

  .header .menu ._list ._item ._b li:nth-child(5) {
    animation-delay: 0.7s;
  }

  .header .menu ._list ._item ._b li:nth-child(6) {
    animation-delay: 0.8s;
  }

  .header .menu ._list ._item ._b li:nth-child(7) {
    animation-delay: 0.9s;
  }

  .header .menu ._list ._item ._b li:nth-child(8) {
    animation-delay: 1s;
  }

  .HprojectInfo ._item ._column ._li a:hover:before {
    background-color: #fff;
  }

  .clock ._list ._li>div>a:hover ._icon:after {
    opacity: 1;
  }

  .Hnews ._top ._tab ._item>a:hover {
    color: var(--color01);
  }

  .HnewsList ._item>a:hover ._img>img {
    transform: scale(1.1);
  }

  .HnewsList ._item>a:hover ._title {
    color: var(--color01);
  }

  .footer ._menu ._item ._b a:hover {
    opacity: 1;
  }

  .footer ._link ._list li a:hover {
    opacity: 1;
  }

  .footer ._keep a:hover {
    text-decoration: underline;
  }

  .below .below_l ._superior:hover {
    background-color: rgba(0, 0, 0, 0.2);
  }

  .below .below_r .slidenav_next>a {
    display: none;
  }

  .below .below_r .slidenav_next>a:hover {
    color: #fff;
    background-color: var(--color01);
  }

  .slidenav ._item>a:hover {
    color: var(--color01);
  }

  .newsList ._item>a:hover ._img {
    transform: scale(0.9);
  }

  .newsList ._item>a:hover ._img>img {
    transform: scale(1.2) rotate(5deg);
  }

  .newsList ._item>a:hover ._names {
    color: var(--color01);
  }

  .pagination li a:hover {
    background-color: var(--color01);
    color: #fff;
  }

  .newsList ._item {
    opacity: 0;
  }

  .newsList ._item.fb3 {
    opacity: 1;
  }

  .newsList ._item.fb3:nth-child(3n + 1) {
    animation-delay: 0s;
    transition-delay: 0s;
  }

  .newsList ._item.fb3:nth-child(3n + 2) {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
  }

  .newsList ._item.fb3:nth-child(3n + 3) {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
  }

  .newsDel ._sell ._list ._item>a:hover ._img>img {
    transform: scale(1.1);
  }

  .newsDel ._sell ._list ._item>a:hover ._txt ._name {
    color: var(--color01);
  }

  .newsDel ._sell ._list ._item>a:hover:after {
    width: 100%;
  }

  .newsDel ._info ._skip ._back>a:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .newsDel ._info ._skip ._back>a:hover:before {
    transform: scale(1.4);
  }

  .newsDel ._info ._skip ._back>a:hover:after {
    transform: scale(1.8);
  }

  .newsDel ._info ._skip ._jump a:hover {
    color: var(--color01);
  }

  .newsDel ._place a:hover {
    color: var(--color01);
  }

  .pc-nav .nav .nav_a:hover .nav_b {
    transform: translateX(-50%);
    opacity: 1;
    visibility: visible;
  }

  .pc-nav .nav .nav_a>.nav_b>.nav_b_list>li>a:hover {
    color: var(--color01);
    background-color: #f5f5f5;
  }
}
@media screen and (max-width: 1919px) {
  .pc-nav ._logo>a>div{
    height: 0.6rem;
  }
  .pc-nav .nav .nav_a>a{
    padding: 0 .25rem;
  }
  .pc-nav .operation ._item{
    padding: 0 .1rem;
  }
  .pc-nav .search{
    padding: 0 .1rem;
  }
  .pc-nav .search ._dd>input{
    width: 1.2rem;
  }
}
@media screen and (max-width: 1600px) {

  .explicit ._info p,
  .explicit ._info span,
  .richText em {
    font-size: 15px !important;
  }

  .richText p,
  .richText span,
  .richText em {
    font-size: 16px !important;
  }

  .pc-nav .nav .nav_a>a {
    padding: 0 .28rem;
    font-size: .16rem;
  }

  .header__tel {
    font-size: .2rem;
  }
  .pc-nav .search ._dd>input{
    width: 1.12rem;
  }

  ._menuContainer .box2 ._item .h5 a {
    font-size: .2rem;
  }

  ._menuContainer .box2 ._item ul {
    margin-top: .3rem;
  }

  ._menuContainer .box4 {
    padding-top: .8rem;
  }

  ._advCont ._contRight ._advDesc {
    padding-left: 8px;
    letter-spacing: 8px;
  }
}
@media screen and (max-width: 1520px){
  .pc-nav ._logo>a{
    padding-right: .5rem;
  }
  .pc-nav .nav .nav_a>a{
    padding: 0 .2rem;
  }
  .pc-nav .operation ._item{
    padding: 0 .15rem;
  }
  .pc-nav .search{
    padding: 0 .1rem;
  }
}
@media screen and (max-width: 1440px) {
  .pc-nav .nav .nav_a>a{
    padding: 0 .3rem;
  }
  .explicit ._info p,
  .explicit ._info span,
  .richText em {
    font-size: 14px !important;
  }

  .richText p,
  .richText span,
  .richText em {
    font-size: 14px !important;
  }

  .header.onShow .menu {
    height: 5.8rem;
  }

  .menu ._box {
    height: 5.8rem;
  }

  .Habout .iphase ._list ._item ._txt ._p {
    padding-right: 4.166666666666667vw;
  }

  .HserviceInfo ._txt {
    height: 2.1rem;
  }

  .Hnews ._top ._tab ._item>a .hoverable_txt:after {
    height: 3px;
  }

  .pc-nav .language .language_item a {
    line-height: 0.44rem;
  }

  .pc-nav .language {
    width: 0.8rem;
  }

  .pc-nav .search ._dd>input {
    height: 0.5rem;
  }

  .pc-nav .search ._dt>button {
    width: 0.5rem;
    height: 0.5rem;
    line-height: 0.5rem;
  }

  .row {
    width: 90%;
  }
  .fixed_server{
    width: 1rem;
  }
}

@media screen and (max-width: 1280px) {

  .explicit ._info p,
  .explicit ._info span,
  .richText em {
    font-size: 13px !important;
  }

  .richText p,
  .richText span,
  .richText em {
    font-size: 13px !important;
  }

  .masterBtn1 {
    width: 1.7rem;
    height: 0.56rem;
    border-top-right-radius: 0.56rem;
    border-bottom-right-radius: 0.56rem;
    padding-right: 12px;
  }
}

@media screen and (max-width: 1024px) {
  #main {
    position: initial;
  }

  .header::before {
    height: 60px;
    background-color: #fff;
  }

  .header .menu {
    display: none;
  }

  .openMenu {
    display: flex;
    align-items: center;
  }

  .pc-nav .operation {
    margin-left: auto;
  }

  .pc-nav {
    width: 100%;
    height: 60px;
    justify-content: space-between;
  }

  .pc-nav ._logo>a>div {
    height: 46px;
  }

  .pc-nav ._logo>a {
    padding: 0 5vw;
  }
  .pc-nav ._logo>a::after{
    width: 0px;
    border-top-width: 30px;
    border-bottom-width: 30px;
    border-left-width: 15px;
  }

  .pc-nav .operation {
    /* display: none; */
  }

  .pc-nav>.nav {
    display: none;
  }

  .pc-nav>.nav .nav_a {
    float: none;
  }

  .pc-nav>.nav .nav_a>a:after {
    display: none;
  }

  .header.mobileNav .pc-nav>.nav {
    transform: none;
  }

  .pc-nav .operation ._item {
    border: none;
  }

  .pc-nav .operation ._itemBtn span {
    display: none;
  }

  .pc-nav .operation ._item .icon {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__tel a {
    font-size: .3rem;
  }

  .header__tel span,.header__mail span,.header__search {
    display: none;
  }

  .openMenu {
    padding: 0 0.35rem 0 .15rem;
  }

  .pc-nav .operation ._itemBtn {
    font-size: 22px;
    line-height: 50px;
  }

  .pc-nav .nav .nav_a>a {
    height: 1rem;
    line-height: 1rem;
    padding: 0;
    font-size: 16px;
    color: #333;
  }

  .Hbanner {
    margin-top: 60px;
    height: 26vh;
  }

  #Hbanner .Hbanner_txt ._item ._title {
    margin-left: 0;
    font-size: .5rem;
    letter-spacing: 0;
  }

  .Hbanner_navigation,.banner-mouse {
    display: none;
  }

  .container {
    padding-top: 60px;
  }

  ._mobContainer {
    padding-top: 0;
  }

  .indexTitle1 {
    padding-left: 30px;
  }

  .indexTitle1 ._en::before {
    border-width: 5px;
    z-index: 0;
  }

  .indexTitle1 ._cn {
    font-size: .44rem;
  }

  .indexTitle1 ._line{
    left: -8px;
    height: 12px;
  }
  .indexTitle1 ._line::before,.indexTitle1 ._line::after{
    width: 40px;
  }
  .indexTitle1 ._line::before{
    height: 5px;
  }
  .indexTitle1 ._line::after{
    height: 7px;
    margin-left: -2px;
  }

  .Habout ._cont{
    flex-flow: column-reverse;
  }
  .Habout .Habout_l{
    width: 100%;
  }
  .Habout .Habout_r{
    width: 100%;
  }
  .pubInfo .info_text{
    font-size: 14px;
  }
  ._moreBtn{
    height: 42px;
  }
  ._moreBtn span{
    font-size: 13px;
  }
  ._moreBtn ._btn{
    width: 32px;
    height: 32px;
  }
  ._moreBtn ._btn div p{
    width: 32px;
    height: 32px;
  }
  ._keyFigList{
    flex-flow: row wrap;
    gap: 15px;
  }
  ._keyFigList .item{
    flex: auto;
    width: calc((100% - 30px) / 3);
  }
  ._keyFigList .item p{
    font-size: 11px;
  }
  ._keyFigList .item .digital-number{
    font-size: 20px;
  }
  ._keyFigList .item span{
    font-size: 12px;
  }
  ._keyFigList .item sup{
    margin-top: -8px;
    font-size: 12px;
  }
  .HbusinessAreas ._bg{
    display: none;
  }
  .HbusinessAreas ._cont{
    flex-flow: column-reverse;
  }
  .HbusinessAreas ._cont ._right{
    width: 100%;
    height: auto;
    display: none;
  }
  .areaTab .swiper-wrapper{
    flex-flow: row wrap;
  }
  .areaTab .item{
    width: auto!important;
  }
  .areaTab .item .item_name{
    font-size: 16px;
    color: #333;
  }
  .areaTab .item .item_icon{
    background-color: #333;
  }
  .HbusinessAreas{
    padding: 30px 0;
  }
  .HbusinessAreas ._cont ._left{
    width: 100%;
    height: auto;
  }
  .areaList .swiper-slide{
    flex-flow: column-reverse;
  }
  .areaList ._busAreaBox{
    width: 100%;
  }
  .areaList ._img{
    width: 100%;
    height: 4.52rem;
  }
  ._busAreaBox ._title{
    font-size: 18px;
  }
  ._busAreaBox ._subtitle{
    font-size: 14px;
  }
  ._busAreaBox ._desc{
    font-size: 14px;
  }
  .Hcase{
    padding: 30px 0;
  }
  .Hcase ._top, .Hnews ._top{
    flex-flow: column;
    align-items: flex-start;
    gap: 20px;
  }
  .Hcase ._caseTab{
    flex-flow: row wrap;
  }
  .Hcase ._caseTab a{
    padding: 2px 15px;
    font-size: 13px;
  }
  .left-text .main-title{
    font-size: 18px;
  }
  .left-text .more-link{
    font-size: 13px;
    position: relative;
  }
  .left-text .desc{
    display: none;
  }
  .Hnews{
    padding: 30px 0;
  }
  ._newsTab ._item{
    font-size: 16px;
  }
  ._newsTab ._item .hoverable_txt:after{
    height: 3px;
  }
  ._newsTab ._item.active .hoverable_txt:after{
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
  ._newsBox ._slide>div{
    flex-flow: column;
  }
  ._newsBox ._left{
    width: 100%;
    gap: 15px;
  }
  .card{
    width: 100%;
    border-radius: 10px;
  }
  ._newsBox ._right{
    width: 100%;
  }
  .card-title{
    font-size: 16px;
  }
  .card-desc{
    display: none;
  }
  .Hconsult{
    padding: 30px 0;
  }
  .Hconsult ._cont{
    flex-flow: column;
    align-items: flex-start;
  }
  .Hconsult ._title{
    font-size: 13px;
  }  

  .footer {}

  .footer .row {
    flex-wrap: wrap;
  }
  .footer ._top ._logo a{
    height: 46px;
  }
  .footer ._top ._logo img{
    height: 100%;
  }
  .footer .f-menu,.contact_code{
    display: none;
  }
  .contact_list{
    width: 100%;
    gap: 15px;
    flex-flow: column;
  }
  .contact_list ._item{
    margin-bottom: 0;
    flex-flow: row nowrap;
    align-items: center;
  }
  .contact_list ._item span{
    display: none;
  }
  .contact_list ._item p{
    padding-right: .3rem;
    flex: 1;
    /* white-space: nowrap; */
  }
  .contact_list ._item p br{
    display: none;
  }
  .contact_list ._item a, .contact_list ._item p{
    font-size: 14px;
  }
  .footer ._mediaCode{
    padding-top: 0;
    grid-template-columns:repeat(4, 1fr);
    gap: 15px;
  }
  .footer ._mediaCode ._item>a{
    width: 32px;
    height: 32px;
  }
  .footer ._mediaCode ._item>a .iconfont{
    font-size: 18px;
  }
  .footer ._mediaCode ._item .follow{
    left: 0;
    right: auto;
  }

  .footer ._copyright {
    padding: 10px 0;
    font-size: .24rem;
    line-height: 1.4;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer ._copy,.footer ._tech,.footer ._copy a, .footer ._tech a{
    font-size: 12px;
    line-height: 2;
  }
  .footer ._copy a{
    display: block;
  }
  .fixed_server{
    display: none;
  }
  .online-box.open .online-cont {
    width: 80%;
  }

  .booking-name b {
    font-size: .4rem;
  }

  .booking-div {
    flex-wrap: wrap;
  }

  .booking-label {
    margin-bottom: .45rem;
    width: 100%;
  }

  .booking-label span {
    font-size: .266rem;
  }

  .booking-form input,
  .booking-textarea {
    font-size: .266rem;
  }

  .booking-label.focus span {
    font-size: .24rem;
  }

  .key-label #verify {
    width: 120px!important;
    height: 42px!important;
  }

  .key-label #keyBtn {
    font-size: .266rem;
  }

  .booking-submit .submit-btn {
    padding: .08rem .54rem;
    border-radius: .6rem;
  }

  .booking-submit .submit-btn span::before {
    width: 6px;
    height: 6px;
  }
  .booking-submit .submit-btn span{
    font-size: 14px;
  }

  .pageBanner.style1 {
    height: 36vw;
  }

  .pageBanner ._info {
    padding: 0 5%;
  }

  .pageBanner.style1 ._info ._title .cn {
    font-size: 24px;
    margin-left: -3px;
  }

  .pageBanner.style1 ._info ._title .en {
    margin-top: -45px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
  }

  .pageBanner ._info ._mouse {
    display: none;
  }

  .below .below_l {
    display: none;
  }

  .below {
    margin-top: 0;
    width: 100%;
    height: 1rem;
    line-height: 1rem;
  }

  .below .below_r .slidenav_next {
    padding-right: 0;
    width: 1rem;
  }

  .below .below_r .slidenav_next>a {
    display: block;
  }

  .below .below_r {
    margin-left: 0;
    padding-right: 1rem;
    width: 100%;
  }

  .slidenav ._item>a {
    padding: 0 5vw;
    font-size: 14px;
  }

  /* 次页 */
  .pageAbout{
    padding: 30px 0;
  }
  .pageAbout ._box{
    flex-flow: column;
  }
  .pageAbout ._left{
    width: 100%;
  }
  .pageAbout ._title{
    font-size: 24px;
  }
  .pageAbout ._title::before{
    width: 56px;
    height: 36px;
    left: -15px;
    z-index: 0;
  }
  .pageAbout ._subtitle{
    margin-bottom: 15px;
    font-size: 12px;
  }
  .pageAbout ._subtitle::after{
    height: 2px;
    z-index: 0;
  }
  .pageAbout ._right{
    width: 100%;
  }
  ._crumbBox{
    gap: 10px;
  }
  ._crumbBox .item{
    width: calc(100% - 42px);
  }
  ._crumbBox .text{
    width: 32px;
  }
  ._crumbBox span.item{
    width: 128px;
    height: 128px;
  }
  ._crumbBox .item:last-child{
    width: calc(100% - 138px)
  }
  .pageHistory ._bg{
    position: absolute;
    left: 0;
    top: 0;
  }
  ._historyList{
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: flex;
    flex-flow: column-reverse;
  }
  ._historyList ._item{
    width: 100%;
    position: relative;
    left: auto;
    top: auto;
  }
  ._historyList ._item.drift01,._historyList ._item.drift02,._historyList ._item.drift03,._historyList ._item.drift04{
    left: auto;
    top: auto;
    z-index: 1;
  }
  ._historyList ._item ._year{
    font-size: 18px;
  }
  ._historyList ._item ._stage{
    font-size: 16px;
  }
  ._historyList ._item ._txt{
    font-size: 14px;
  }
  .pageCulture ._bg::before{
    z-index: -1;
  }
  .pageCulture ._box, .pageHonor ._box{
    position: relative;
    z-index: 1;
  }
  .pageCulture ._top{
    max-width: unset;
  }
  .pageCulture ._top ._title, .pageHonor ._top ._title{
    font-size: 20px;
  }
  .pageCulture ._top .pubInfo .info_text p, .pageHonor ._top .pubInfo .info_text p{
    text-align: left;
  }
  ._cultureList{
    flex-flow: column;
  }
  ._cultureList ._item{
    margin-bottom: 20px;
    padding: 0;
    width: 100%;
    flex-flow: row;
  }
  ._cultureList ._item ._num{
    display: none;
  }
  ._cultureList ._item ._info{
    margin-top: 0;
    flex: 1;
    text-align: left;
  }
  ._cultureList ._item ._title{
    margin-bottom: 0;
    font-size: 16px;
  }
  ._cultureList ._item ._text{
    font-size: 14px;
  }

  .pageHonor ._top{
    padding: 0;
  }
  ._category>a{
    font-size: 14px;
  }
  ._honorList{
    grid-template-columns:repeat(2, 1fr);
    gap: 15px;
  }
  ._honorList ._img{
    padding: 10px;
    height: 152px;
  }
  ._honorList ._name{
    font-size: 14px;
    line-height: 1.6;
  }
  /* mobile page product */
  .page-product{
    overflow: hidden;
  }
  ._proBox{
    flex-direction: column;
  }
  ._classifySidebar{
    width: 100%;
  }
  ._classifySidebar ._hd{
    display: none;
  }
  ._classifyList{
    padding-right: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .2rem;
  }
  ._classifyList ._item a{
    font-size: 14px;
  }
  ._productList{
    padding-left: 0;
  }
  ._productList::before{
    left: -10%;
    width: 120%;
  }
  ._productList ._item{
    padding: 10px;
  }
  ._productList ._item>div{
    gap: 15px;
  }
  ._productList ._item ._img{
    width: 40%;
    height: 2.36rem;
    border-radius: 10px;
  }
  ._productList ._info ._desc{
    font-size: .24rem;
    -webkit-line-clamp: 1;
  }
  ._productList ._info ._phone{
    display: none;
  }
  ._place {
    font-size: .24rem;
  }

  .page-product-top {
    flex-flow: column;
  }

  .page-product-top-left {
    margin-bottom: .2rem;
    width: 100%;
    padding: .2rem;
  }

  .album-pagination {
    font-size: .22rem;
  }

  .album-pagination span:first-child {
    font-size: .3rem;
  }

  .page-product-top-right {
    padding-left: 0;
  }

  .page-product-top-right .page-product-title {
    font-size: .36rem;
  }
  ._productList ._info ._name{
    font-size: 15px;
    line-height: 1.7;
  }

  ._productList ._moresBtn>a {
    font-size: 12px;
    height: 36px;
    line-height: 2;
    padding: 8px 10px; 
    gap: 6px;
  }

  .page-product-top-summary {
    font-size: .24rem;
  }
  ._pageParameter{
    font-size: .266rem;
  }

  ._pagePvnBtn {
    gap: .3rem;
  }

  ._pagePvnBtn>p {
    padding: .1rem .3rem;
    font-size: .24rem;
  }

  ._pageParameter table{
    width: 100%!important;
    height: auto!important;
  }
  ._pageParameter table tr{
    height: auto!important;
  }
  ._pageParameter table td{
    font-size: .24rem;
  }
  ._relateProList ._item ._title{
    font-size: .24rem;
  }

  .newsDel ._sell {
    display: none;
  }

  .newsDel ._info {
    margin-right: 0;
  }

  .newsDel {
    padding-top: 0.5rem;
    padding-bottom: 1.2rem;
  }

  .slidenav .swiper-slide {
    width: auto;
  }

  .pc-nav .nav .nav_a>.nav_b {
    display: none;
  }

  .page-product-top {
    display: block;
  }

  .page-product-top-left {
    width: 100%;
    height: auto
  }

  .page-product-thumbnail {
    display: none;
  }

  .page-product-album {
    width: 100%;
    height: 268px;
  }

  .album-pagination {
    width: 1.2rem;
    font-size: .24rem;
  }

  .album-pagination span:first-child {
    font-size: .3rem;
  }

  .page-product-top-right {
    width: 100%;
    margin-top: .3rem;
    padding: 0;
    border: none;
  }

  .page-product-top-right .page-product-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .page-product-subtitle{
    font-size: 18px;
  }

  .page-product-top-summary {
    padding: 0;
    margin-bottom: .3rem;
    font-size: 14px;
  }

  .page-product-tel {
    font-size: .24rem;
  }

  .page-product-tel b {
    font-size: .36rem
  }

  .page-product-button a {
    padding: 0 12px;
    height: 40px;
    font-size: 14px;
    border-radius: 20px;
  }

  .page-product-bottom-title {
    font-size: .3rem;
  }

  .page-product-bottom {
    display: block
  }

  .page-product-bottom-left {
    width: 100%;
    margin-bottom: .6rem;
  }

  .page-product-text {
    font-size: .266rem;
    line-height: 1.8
  }

  .page-product-text img {
    max-width: 100%;
    height: auto !important;
  }

  .page-product-bottom-right {
    width: 100%;
    margin-left: 0
  }

  .page-product-hot-item {
    width: calc(50% - .1rem);
    margin-right: .2rem;
    float: left
  }

  .page-product-hot-item .product-title {
    font-size: .266rem;
  }

  .page-product-hot-item:nth-child(2n) {
    margin-right: 0
  }

  ._appSection1{
    flex-flow: column;
    gap: 15px;
  }
  ._appSection1 h2._title{
    max-width: unset;
  }
  ._appSection1 ._text{
    display: block;
    font-size: 13px;
  }
  ._appSection1 ._text p{
    margin-bottom: 10px;
  }
  .appSection ._title, ._pageNews ._title{
    font-size: 24px;
  }
  ._appSection2{
    padding: 200px 0 30px;
  }
  ._appSection2 ._list{
    flex-flow: column;
    gap: 10px;
  }
  ._appSection2 ._item{
    padding: 0;
    width: 100%;
    gap: 15px;
  }
  ._appSection2 ._item span{
    font-size: 16px;
  }
  ._appSection2 ._item p{
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
  }
  ._industryList{
    gap: 15px;
  }
  ._industryList ._item{
    width: 100%;
  }
  ._industryList ._item ._text{
    padding: 20px 0 10px;
    gap: 10px;
    flex-flow: column;
  }
  ._industryList ._item ._name{
    font-size: 18px;
  }
  ._industryList ._item ._desc{
    font-size: 13px;
    text-align: justify;
  }
  ._directionList{
    grid-template-columns:repeat(1, 1fr)
  }
  ._directionList ._item{
    border-radius: 10px;
    height: 3.68rem;
  }
  ._directionList ._item:nth-child(2),._directionList ._item:nth-child(4){
    grid-column:1 / span 1
  }
  ._directionList ._item ._text{
    padding: 10px;
  }
  ._directionList ._item ._text h4{
    font-size: 16px;
  }
  ._directionList ._item ._text p{
    font-size: 12px;
  }
  ._appAdvList ._item,._appAdvList ._item:nth-child(even){
    flex-flow: column;
  }
  ._appAdvList ._item ._img{
    width: 100%;
  }
  ._appAdvList ._item ._text{
    padding: 20px;
  }
  ._appAdvList ._item h4{
    font-size: 18px;
  }
  ._appAdvList ._item p{
    font-size: 14px;
  }
  .pageNews__list{
    grid-template-columns:repeat(1, 1fr);
    gap: 15px;
  }
  .pageNews__list .item a figure{
    height: 212px;
  }
  .pageNews__list .item a figcaption ._title{
    font-size: 18px;
  }
  .pageNews__list .item a figcaption ._desc{
    margin-top: 6px;
    font-size: 13px;
  }
  ._pageNews ._date{
    margin-top: 15px;
    font-size: 13px;
  }

  ._pageNewsDel ._cnt{
    flex-flow: column;
  }
  ._pageNewsDel ._info {
    width: 100%;
  }

  ._pageNewsDel ._info ._top ._title {
    font-size: 22px;
  }

  ._pageNewsDel ._info ._top ._line {
    font-size: 13px;
  }

  ._pageNewsDel ._info ._contin {
    font-size: 14px;
  }

  ._pageNewsDel ._sell {
    width: 100%;
  }
  ._pageNewsDel ._sell::before{
    display: none;
  }
  ._pageNewsDel ._sell ._cont{
    padding-left: 0;
  }
  ._pageNewsDel ._sell ._list{
    display: flex;
    flex-flow: row wrap;
    gap: 10px;
  }
  ._pageNewsDel ._sell ._list ._item{
    width: calc(50% - 5px);
  }
  ._pageNewsDel ._sell ._list ._item ._txt ._name{
    font-size: 14px;
  }
  ._pageNewsDel ._sell ._list ._item ._txt ._desc,._pageNewsDel ._sell ._list ._item ._txt ._more{
    display: none;
  }
  ._pagePvnBtn {
    font-size: 13px;
  }
  ._pageContact ._cnt {
    flex-flow: column-reverse;
  }

  .info-section {
    padding: 0;
  }
  .info-item{
    margin-bottom: 15px;
    padding-bottom: 10px;
    align-items: flex-start;
  }
  .info-label{
    width: 80px;
    font-size: 14px;
  }
  .info-text{
    align-items: flex-start;
  }
  .info-value{
    font-size: 14px;
    flex-flow: row wrap;
    flex: 1;
  }

  .section-title {
    font-size: 24px;
  }
  .form-desc{
    font-size: 14px;
  }

  .qrcode-group {
    margin-top: 20px;
    gap: 5px;
  }

  .qrcode-item {
    flex: 1;
  }

  .form-section {
    padding: 15px 20px;
  }

  .captcha-img {
    width: 100px;
  }

  ._pageMap iframe {
    height: 320px;
  }
  
}

@media screen and (max-width: 768px) {

  .explicit ._info p,
  .explicit ._info span,
  .richText em {
    font-size: 14px !important;
  }

  .richText p,
  .richText span,
  .richText em {
    font-size: 14px !important;
  }

  .masterBtn1 {
    width: 2.2rem;
    height: 0.72rem;
    border-top-right-radius: 0.72rem;
    border-bottom-right-radius: 0.72rem;
  }

  #Hbanner .Hbanner_nav ._pvn span {
    width: 6px;
    height: 6px;
  }

  .Habout .iphase ._list ._item {
    width: 100%;
  }

  .Habout .iphase ._list {
    flex-wrap: wrap;
  }

  .Habout .iphase ._list ._item {
    margin-bottom: 0.6rem;
  }

  .Habout .iphase ._list ._item:last-of-type {
    margin-bottom: 0;
  }

  .masterIcon {
    width: 0.64rem;
    height: 0.64rem;
    line-height: 0.64rem;
  }

  .Habout .iphase ._list ._item ._icon ._line {
    height: calc(100% - 0.74rem);
  }

  .Habout .iphase ._list ._item ._txt ._name {
    font-size: 16px;
  }

  .Habout .iphase ._title {
    font-size: 18px;
  }

  .masterTitle1 ._t {
    font-size: 16px;
  }

  .masterTitle3 .slogan {
    font-size: 14px;
    line-height: 1.6;
  }

  .clock>img {
    display: none;
  }

  .clock ._cir {
    display: none;
  }

  .clock ._list {
    flex-wrap: wrap;
    display: flex;
    margin: -0.2rem 0;
  }

  .clock ._list ._li {
    position: initial;
    transform: none !important;
    width: 50%;
    padding: 0.2rem 0;
  }

  .clock {
    width: 100%;
  }

  .clock ._list ._li ._icon {
    width: 0.84rem;
    height: 0.84rem;
  }

  .clock ._list ._li ._name {
    transform: none !important;
    top: 50% !important;
    z-index: -1;
    left: 1.1rem !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    bottom: initial !important;
  }

  .clock ._list ._li>div {
    height: auto;
    padding-bottom: initial;
  }

  .clock ._list ._li>div>a {
    position: initial;
  }

  .clock {
    height: auto;
    margin-top: 1rem;
  }

  .clock ._list {
    position: initial;
  }

  .HserviceInfo {
    width: 100%;
  }

  .Hservice ._tab {
    display: none;
  }

  .HserviceInfo ._txt {
    height: 2.3rem;
  }

  .Hservice ._cnt {
    position: relative;
  }

  .Hservice_cut {
    position: absolute;
    right: 0;
    bottom: 0;
  }

  .Hnews ._top {
    flex-wrap: wrap;
  }

  .Hnews ._top ._tab {
    margin-left: 0;
    width: 100%;
  }

  .Hnews ._top .masterTitle1 {
    width: 100%;
    margin-bottom: 0.6rem;
  }

  .Hnews ._top ._tab ._item {
    padding: 0;
    margin-right: 0.5rem;
  }

  .HnewsList ._item ._times>span {
    font-size: 0.4rem;
    margin-right: 5px;
  }

  .HnewsList .swiper-wrapper {
    display: block;
  }

  .Hnews .listing .Hnewsroll {
    display: none;
  }

  .footer ._menu>div ._item {}

  .footer ._top ._mail {
    display: none;
  }

  .footer ._top ._logo {
    margin-right: 0;
  }

  .footer .bootm_right {
    margin: 0 auto;
  }

  .bottom_code div {
    width: 32%;
  }

  /* .footer ._menu>div ._item:last-of-type{margin-bottom: 0;}
	.footer ._menu ._item ._a a{margin-bottom:8px;}
	.footer ._menu ._item ._b a{padding: 4px 0;} */
  .footer ._link ._list li {
    padding: 4px 0;
  }

  .footer ._keep {
    padding: 0.2rem 5%;
  }

  .pc-nav .language .language_item a {
    line-height: 0.6rem;
  }

  .pc-nav .language {
    width: 1.2rem;
  }

  .profile ._box>div {
    flex-wrap: wrap;
  }

  .profile ._since {
    width: 100%;
    padding-right: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .profile ._since .logo {}

  .profile ._since .logo img {
    height: .98rem;
  }

  .profile ._since ._tit {
    margin-top: 0;
    margin-left: .38em;
    font-size: .48rem;
    text-align: left;
  }

  .profile ._since ._year {
    margin-top: 0;
    margin-left: .2em;
    font-size: .48rem;
  }

  .profile ._info {
    width: 100%;
    padding: 0;
  }

  .profile ._bg {
    display: none;
  }

  .profile ._info ._txt {
    max-height: initial;
  }

  .profile {
    padding: 1.2rem 0;
  }

  .profile ._info ._icon {
    top: 0;
  }

  .profile ._info ._icon .masterIcon {
    width: 0.5rem;
    height: 0.5rem;
    line-height: 0.5rem;
  }

  .profile ._info ._icon ._line {
    height: calc(100% - 0.5rem);
  }

  .advantage {
    padding: 1.2rem 0 0;
    display: flex;
    flex-direction: column-reverse;
  }

  .advantage ._bg {
    width: 100%;
    position: relative;
    left: 0;
    right: 0;
    border-radius: unset;
  }

  .advantage ._bg::before {
    border-radius: unset;
  }

  .advantage ._num {
    padding-left: 5%;
    padding-right: 5%;
  }

  .advantage ._num ._item {
    margin-right: .5rem;
    margin-bottom: .5rem;
  }

  .advantage ._num ._item span {
    font-size: .24rem;
  }

  .advantage ._custom {
    padding-top: 0;
    padding-right: 0;
    width: 100%;
  }

  .customList ._item {
    padding: .15rem .2rem;
  }

  .customList ._item p {
    margin-top: .2rem;
    line-height: 1.6;
  }

  .course ._info {
    margin-left: 0;
    width: 100%;
    padding: 0 .2rem 0;
  }

  .course {
    padding: 1.2rem 0;
  }

  .course ._bg>img {
    object-position: right;
  }

  .courseSwiper .swiper-slide.swiper-slide-prev,
  .courseSwiper .swiper-slide.swiper-slide-next {
    display: none !important;
  }

  .courseSwiper .swiper-slide.active {
    width: 100% !important;
  }

  .courseSwiper .swiper-slide.active ._item ._times {
    font-size: 1.68rem;
  }

  .courseList .coursePrev {
    left: -.3rem;
  }

  .courseList .courseNext {
    right: -.3rem;
  }

  .masterTitle2 {
    font-size: 0.36rem;
  }

  .serveLick ._box>div {
    padding: 0 0.35rem;
  }

  .serveLick ._list>div {
    margin: -0.2rem;
  }

  .serveLick ._list ._item {
    width: 100%;
    padding: 0.2rem;
  }

  .serveLick ._box {
    padding: 0.4rem 0;
  }

  .explicit,
  .projectdel {
    overflow: hidden;
  }

  .explicit ._box {
    padding-left: 0.35rem;
  }

  .explicit ._info table {
    width: calc(100% + 5vw) !important;
    margin-right: calc(-5vw);
    max-width: initial !important;
    padding-right: 5vw;
  }

  .contact ._tHd ._img {
    margin-left: 0;
    width: 100%;
    height: 1.4rem;
  }

  .contact ._tHd ._img img {
    margin: 0 auto;
  }

  .contact ._tHd ._img ._tName {
    padding-top: 30px;
    width: 100%;
    left: 0;
    font-size: .48rem;
    line-height: 2;
    justify-content: center;
    text-align: center;
  }

  .contact ._tHd ._slogan {
    display: none;
  }

  .contact ._list {
    flex-direction: column;
  }

  .contact ._list ._item {
    margin-right: 0;
    margin-bottom: .3rem;
    width: 100%;
    box-shadow: 0 0 .3rem rgba(102, 102, 102, .15);
  }

  ._message {
    padding: 1.2rem 0;
  }

  ._form {
    max-width: 100%;
  }

  ._form ._item {
    margin: 0;
    border-radius: .2rem;
  }

  ._form .col-2 {
    width: 100%;
  }

  ._form label {
    width: .6rem;
  }

  ._form ._input {
    width: calc(100% - .6rem);
  }

  ._form ._btn {
    padding: .3rem .3rem;
    display: block;
    width: 100%;
  }

  .purpose ._list ._item {
    width: 50%;
    padding: 0.15rem;
  }

  .purpose ._list>div {
    margin: -0.15rem;
  }

  .cultureList ._item {}

  .cultureList ._item:nth-child(3),
  .cultureList ._item:last-of-type {
    margin-bottom: 0;
  }

  .cultureList>div {
    margin: 0;
  }

  .cultureList ._item ._title {
    margin-bottom: 0.4rem;
  }

  .cultureList ._item ._line {
    max-height: initial;
  }

  .newsList ._item ._time {
    font-size: 0.4rem;
  }

  .newsList ._item {
    width: 100%;
    margin-bottom: 0.4rem;
    padding-top: 0;
  }

  .newsDel ._info {
    padding: 0.5rem 0.4rem;
  }

  .newsDel ._info ._contin img {
    max-width: 100%;
    width: 100%;
    height: auto !important;
  }

  .newsDel ._info ._skip ._back {
    display: none;
  }

  .newsDel ._info ._skip ._jump {
    padding-right: 0;
  }

  .research ._box {
    flex-wrap: wrap;
  }

  .research ._info {
    width: 100%;
  }

  .research ._img {
    width: 100%;
    order: -1;
  }

  .research ._box:after {
    display: none;
  }

  .research ._img {
    padding: 0.35rem;
  }

  .research ._info>div {}

  .research ._info {
    padding-top: 0.25rem;
    padding-bottom: 0.35rem;
  }

  .footer ._code .item .follow {
    padding: 0.2rem 0.3rem;
  }
}